我已经为特定的自定义帖子类型(schedule)创建了分类法(schedule\\u day\\u taxonomy)。
add_action( \'init\', \'schedule_day_tax_func\' );
function schedule_day_tax_func() {
register_taxonomy(
\'schedule_day_taxonomy\',
\'schedule\',
array(
\'hierarchical\' => true,
\'label\' => \'Day\',
\'query_var\' => true,
)
);
}
现在是分类学DAY
仅显示在自定义帖子类型中schedule
我已经从管理面板创建了“7个术语”。现在我要删除Add New Category
所有用户和管理员的永久选项。我该怎么做?