web-dev-qa-db-ja.com

プログラムで分類用語を作成する

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

13
Lucy

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);
11
ericduran