以编程方式创建分类术语


13

您将如何以编程方式创建分类术语?我希望在自定义模块中批量创建一些。

Answers:


11

您将要使用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);

“重量”也可以包含在此处
Shoaib Nawaz

1
也有父母,
亲戚

1
@Shaoib:您知道您可以在stackexchange上编辑答案,并利用您的知识来增强答案吗?我添加了weight属性,并通过taxonomy_save_term()调用完成了代码示例。
marcvangend 2011年

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.