जवाबों:
आप taxonomy_save_term का उपयोग करना चाहते हैं । आपके द्वारा taxonomy_save_term को पास किए गए सरणी को इस तरह दिखना चाहिए।
$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);