Câu trả lời:
Bạn sẽ muốn sử dụng taxonomy_save_term . Mảng bạn chuyển đến taxonomy_save_term sẽ trông như thế này.
$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);