您可以使用wp_update_term 修改术语(即使默认未分类)和wp_insert_term 更新现有条款。
这里有一个基本的例子,可以帮助您实现这一目标。
function add_category(){
// Update Uncategorized Category (1)
wp_update_term(
1,
\'category\',
array(
\'name\' => \'New Category Name\',
\'slug\' => \'new-category-slug\'
)
);
// Insert New Category
if(!term_exists(\'another-category\')) {
wp_insert_term(
\'Another Category\',
\'category\',
array(
\'slug\' => \'another-category\'
)
);
}
}
add_action(\'after_setup_theme\', \'add_category\');
这是经过测试的,并且有效。