wp_create_category() 用于创建新分类,可指定父类
<?php wp_create_category( $cat_name, $parent ); ?>
$cat_name
(string) (必须) 创建的新分类名.
默认: None
$parent
(integer) (可选) 父类ID.
默认: None
(integer)
返回新创建的分类ID,如果创建失败则返回0.
<?php //创建新分类, 分类名为My category name wp_create_category('My category name'); ?>
wp_create_category() 位于 wp-admin/includes/taxonomy.php.