也想出现在这里?联系我们

WordPress 自定义文章类型添加后台分类筛选

2023.12.27 wordpress教程
  • 文章介绍
  • 升级版本
  • 评价&建议

要在WordPress中为自定义文章类型添加后台分类筛选,您可以按照以下步骤操作:

  1. 注册您的自定义文章类型:如果尚未完成,您需要使用register_post_type函数注册您的自定义文章类型。例如:
function custom_post_type() {
    register_post_type('your_custom_post_type', array(
        'labels' => array(
            'name' => 'Custom Post Type',
            'singular_name' => 'Custom Post Type'
        ),
        'public' => true,
        'has_archive' => true,
        'supports' => array('title', 'editor', 'thumbnail'),
    ));
}

add_action('init', 'custom_post_type');
  1. 注册分类法:您需要为您的自定义文章类型注册一个分类法,以便您可以为其添加分类。使用register_taxonomy函数,例如:
function custom_taxonomy() {
    register_taxonomy(
        'custom_taxonomy',
        'your_custom_post_type',
        array(
            'label' => 'Custom Taxonomy',
            'hierarchical' => true,
            'public' => true,
            'show_ui' => true,
            'show_admin_column' => true,
        )
    );
}

add_action('init', 'custom_taxonomy');
  1. 启用后台筛选:默认情况下,自定义文章类型的分类筛选框是隐藏的。要启用它们,请确保在register_taxonomy函数中的参数中设置了show_uishow_admin_columntrue,如上所示。

一旦完成上述步骤,您应该在自定义文章类型的编辑页面中看到分类筛选框,允许您将文章分配到不同的分类中。这样,您就可以在后台按分类对您的自定义文章类型进行筛选了。

有用0
  • 2023.12.27初次和大家见面了!

等待您对该主题的建议

发表评论

还能输入240个字

Hi, 欢迎加入Wordpress技术交流群,带你装逼带你飞!

我要入群
也想出现在这里?联系我们
wordpress加速

我来推荐一个更牛逼的给你看看?

  • 猛戳我吧