Wordpress 尝试让自定义帖子类型和帖子显示在标记和类别页面中

Wordpress 尝试让自定义帖子类型和帖子显示在标记和类别页面中,wordpress,custom-post-type,Wordpress,Custom Post Type,我构建了一个自定义的post类型,设置为使用post使用的开箱即用标记和类别。但是,如果我单击标记或类别链接,归档文件将仅显示带有该标记的帖子,而不是我的自定义帖子类型。我试过几种方法来修复它,但它们似乎不起作用。我的代码是: // Add Resource Post Type add_action('init', 'hallam_init'); function hallam_init() { // set up the labels $labels = a

我构建了一个自定义的post类型,设置为使用post使用的开箱即用标记和类别。但是,如果我单击标记或类别链接,归档文件将仅显示带有该标记的帖子,而不是我的自定义帖子类型。我试过几种方法来修复它,但它们似乎不起作用。我的代码是:

// Add Resource Post Type

add_action('init', 'hallam_init');

function hallam_init() {
        // set up the labels
        $labels = array(
                'name' => _x('Resources', 'post type general name'),
                'singular_name' => _x('Resource', 'post type singular name'),
                'add_new' => _x('Add New', 'resource'),
                'add_new_item' => __( 'Add New Resource' ),
                'edit_item' => __( 'Edit Resource' ),
                'new_item' => __( 'New Resource' ),
                'view_item' => __( 'View Resource' ),
                'search_items' => __( 'Search Resources' ),
                'not_found' =>  __( 'No resources found' ),
                'not_found_in_trash' => __( 'No respources found in Trash' ),
                'parent_item_colon' => ''
        );

        // set up the args
        $args = array (
                'labels' => $labels,
                'public' => true,
                'publicly_queryable' => true,
                'show_ui' => true,
                'query_var' => true,
                'rewrite' => array (
                        'slug' => 'resources'
                ),
                'capability_type' => 'post',
                'hierarchical' => false,
                'menu_position' => 5,
                'supports' => array(
                        'title',
                        'editor',
                        'author',
                        'thumbnail',
                        'excerpt',
                        'comments'
                ),
                'taxonomies' => array(
                        'collection',
                        'category',
                        'post_tag'
                ),
                'has_archive' => true
        );

        register_post_type('ht_resource', $args);
}

// Add Taxonomy

register_taxonomy('collection', 'ht_resource', array(
        'hierarchical' => true,
        'label' => 'Collections',
        'query_var' => true,
        'rewrite' => true
));

// Fix the archives

    add_filter( 'pre_get_posts', 'add_to_query' );

    function add_to_query( $query ) {
        // if ( is_home() ) {
            if( $query->query_vars['suppress_filters'] ) // TODO check if necessary
                return $query;
            $supported = $query->get( 'post_type' );
            if ( !$supported || $supported == 'post' )
                $supported = array( 'post', 'ht_resource' );
            elseif ( is_array( $supported ) )
                array_push( $supported, 'ht_resource' );
            $query->set( 'post_type', $supported );
            return $query;
        //}
    }

我是不是遗漏了一些明显的东西?

您可以通过添加主题的functions.php来尝试一下吗?希望它能起作用

function query_post_type($query) {
  if(is_tag()) {
        $query->set('post_type',$post_types=get_post_types('','names'));
        return $query;
    }
}
add_filter('pre_get_posts', 'query_post_type'); 
thnx