分類用語をプログラムでどのように作成しますか?カスタムモジュールでいくつかを一括作成したいと思います。
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);