问题描述

一直以来,我一直在使用自定义的帖子类型,但是昨天我把自己的第一个分支与他们分开了。

这是我的’company’ 分类:

function create_company_taxonomy() {
    $labels = array(
        'name'              => _x( 'Companies', 'taxonomy general name' ),
        'singular_name'     => _x( 'Company', 'taxonomy singular name' ),
        'search_items'      => __( 'Search Companies' ),
        'all_items'         => __( 'All Companies' ),
        'parent_item'       => __( 'Parent Company' ),
        'parent_item_colon' => __( 'Parent Company:' ),
        'edit_item'         => __( 'Edit Companies' ),
        'update_item'       => __( 'Update Companies' ),
        'add_new_item'      => __( 'Add New Company' ),
        'new_item_name'     => __( 'New Company Name' ),
        'menu_name'         => __( 'Company' ),
    );

    $args = array(
        'labels'            => $labels,
        'show_ui'           => true,
        'show_admin_column' => true,
        'query_var'         => true,
        'rewrite'           => array( 'slug' => 'company' ),
        'public' => true,
        'hierarchical' => true,
        'show_ui' => true,
        'show_in_nav_menus' => true,
        'query_var' => true,
        'publicly_queryable' => true,
        'capability_type' => 'post',
        'hierarchical' => true,
        'has_archive' => true
    );

    register_taxonomy( 'company', array( 'brochures','business-cards','post','websites' ), $args );
}
add_action( 'init', 'create_company_taxonomy', 0 );

你可以看到我正在尝试使用它与’posts’ 以及三种自定义的职位类型 – ‘brochures’,’business-cards’,’websites’

当我创建一个 taxonomy-company.php 模板 (基于 archive.php),并从分类中给出这些 post_types 中的每一个术语时,只有在页面上显示帖子。我无法获得显示的自定义帖子类型。

我需要自定义查询吗?任何见解将不胜感激。

编辑:这是我的一个 register_post_types

add_action( 'init', 'create_custom_post_types' );
function create_custom_post_types() {

   $labels = array(
    'name' => __( 'Websites' ),
    'singular_name' => __( 'Website' )
    );

    $args = array(
    'labels' => $labels,
    'public' => true,
    'has_archive' => true,
    'rewrite' => array('slug' => 'websites'),
    'taxonomies' => array( 'category','company','post_tag' ),
    'supports'  => array( 'title', 'editor', 'thumbnail' , 'custom-fields', 'excerpt' ),
    'exclude_from_search' => true
    );

  register_post_type( 'websites', $args);
}

最佳解决方案

默认情况下,所有公共帖子类型都包含在分类页面的主要主要查询中。如果在设置为 true 时查看 register_post_type()'s 的公共参数

  • ‘true’

  • Implies exclude_from_search: false, publicly_queryable: true, show_in_nav_menus: true, and show_ui:true.

注册您的帖子类型时,您将 exclude_from_search 设置为 true 。这不仅从搜索中删除自定义帖子类型,还可以从分类页面上的主查询中删除。再次,从 exclude_from_search 参数的 codex

Note: If you want to show the posts’s list that are associated to taxonomy’s terms, you must set exclude_from_search to false (ie : for call site_domaine/?taxonomy_slug=term_slug or site_domaine/taxonomy_slug/term_slug). If you set to true, on the taxonomy page (ex: taxonomy.php) WordPress will not find your posts and/or pagination will make 404 error.

解决方案

您需要将 exclude_from_search 设置为 false,重新填充您的永久链接和您的好友。如果您需要从搜索页面中排除帖子类型,可以使用 pre_get_posts 从主查询中删除帖子类型

EDIT

只是为了兴趣,这里是 WP_Query 类 (在 wp-includes /query.php) 中的代码,它负责从分类术语归档页面的主查询中包括和排除发布类型

if ( $this->is_tax ) {
    if ( empty($post_type) ) {
        // Do a fully inclusive search for currently registered post types of queried taxonomies
        $post_type = array();
        $taxonomies = array_keys( $this->tax_query->queried_terms );
        foreach ( get_post_types( array( 'exclude_from_search' => false ) ) as $pt ) {
            $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies( $pt );
            if ( array_intersect( $taxonomies, $object_taxonomies ) )
                $post_type[] = $pt;
        }
        if ( ! $post_type )
            $post_type = 'any';
        elseif ( count( $post_type ) == 1 )
            $post_type = $post_type[0];

        $post_status_join = true;
    } elseif ( in_array('attachment', (array) $post_type) ) {
        $post_status_join = true;
    }
}

这里的重要部分是:get_post_types( array( 'exclude_from_search' => false )。在这里,查询获取 exclude_from_search 设置为 false 的所有公共类型。 exclude_from_search 设置为 true 的所有帖子类型将从查询中排除,这就是为什么您的自定义帖子类型不包含在分类术语存档页面中

参考文献

注:本文内容整合自 Google/Baidu/Bing 辅助翻译的英文资料结果。如果您对结果不满意,可以加入我们改善翻译效果:薇晓朵技术论坛。