Risposte:
Ti consigliamo di utilizzare taxonomy_save_term . L'array che passi a taxonomy_save_term dovrebbe apparire così.
$term = array(
'name' => 'Taxonomy Term 1',
'vid' => 1, // The VID of the vocabulary this term should be saved under
'description' => 'A description of this term', // Not required
'weight' => 5, // Not required
);
taxonomy_save_term($term);