在您的职能范围内。php:
function custom_admin_scripts( $hook ) {
if ( $hook == \'post.php\' && get_post_type() == \'your_custom_post_type_key\' ) {
wp_enqueue_style( \'your_custom_post_type_key\', get_stylesheet_directory_uri() . \'/my_css_file.css\', array(), false, \'all\' );
}
}
add_action( \'admin_enqueue_scripts\', \'custom_admin_scripts\' );
更改your_custom_post_type_key
更改自定义贴子类型键/my_css_file.css
到css文件的实际路径在css文件中:
#{your_custom_taxonomy_key}-adder {
display: none !important;
}
更改{your_custom_taxonomy_key}
自定义分类键CSS选择器将隐藏整个加法器部分。
这应该可以做到。