Antworten:
Sie möchten taxonomy_save_term verwenden . Das Array, das Sie an taxonomy_save_term übergeben, sollte folgendermaßen aussehen.
$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);