我在WordPress中创建了自定义分类。我想阻止发布帖子,除非选择了分类。我需要用什么钩来做到这一点?我想只使用php钩子,而不是jQuery。
创建分类法的代码:
function sport_type_st_t(){
/*** =========== Sport type ================== ***/
$argsT=array(
'labels'=>array( 'name'=>__('Sport Types'),
'singular_name'=>__('Sport Type'),
'all_items'=>__('All Sport Type'),
'search_items'=>__('Search Sport Type'),
'edit_item'=>__('Edit Sport Type'),
'view_item'=>__('View Sport Type'),
'update_item'=>__('Update Sport Type'),
'add_new_item'=>__('Add Sport Type'),
'new_item_name'=>__('New Sport Type'), ),
'hierarchical' => true, 'public'=>true, );
register_taxonomy( 'sport_type_st_t', array('post'), $argsT ); //add_filter( 'custom_menu_order', 'wpse_73006_submenu_order' );
}
add_action('init','sport_type_st_t',20.1);