如何使自定义帖子分类看起来像常规类别?

时间:2017-02-25 作者:Roman Nazarkin

如果为自定义帖子类型创建常规分类法,其行为和外观类似于内置标记分类法:

regular taxonomy appearance

如果我需要让它看起来像类别,我可以添加下一个\'hierarchical\' => true a的参数register_taxonomy 调用,它工作得很好,除非我不需要层次结构特性。

wp categories view

如何使自定义帖子分类看起来像类别,但禁用hierarchical 选项

1 个回复
SO网友:filipecsweb

在您的职能范围内。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选择器将隐藏整个加法器部分。

这应该可以做到。

相关推荐

rewrite rules hierarchical

我希望我的WordPress遵循以下规则:/productes/ 包含所有产品的页面/productes/[category]/ 包含该类别所有产品的分类页面/productes/[category]/[subcategory]/ 包含该类别所有产品(与2相同)的分类页面/[productes]/[category]/[product]/ A.single-productes.php 将显示类别产品/[productes]/[category]/[subcategory]/[product]/ A.sin