답변:
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);