按分类,自定义帖子类型查询和显示帖子

时间:2019-09-24 09:20:02

标签: php wordpress custom-post-type

我有一个名为resources的自定义帖子类型:

register_post_type(
    'resources',
    tp_build_post_args(
        'resources', 'Resource', 'Resources',
        array(
            'menu_icon'     => 'dashicons-welcome-write-blog',
            'menu_position' => 20,
            'public'      => true,
            'supports' => array('editor', 'title','author','thumbnail', 'revisions'),
            'taxonomies' => array('sector', 'subject', 'type'),
        )
    )
);

还有一个名为type的分类法:

register_taxonomy(  
    'type', 
    'type', 
    array(  
        'hierarchical' => true,  
        'label' => 'Type',  
        'query_var' => true,
        'rewrite' => array(
            'slug' => 'type', 
            'with_front' => false 
        ) 
    )
);

类型可以是以下之一:

  • 博客
  • 新闻
  • 网络研讨会

我正在尝试使用wp_query来显示resources下带有type“新闻”的所有帖子。但是,它将返回所有帖子。

我的方法在哪里破裂:

$card_count = 4;
$resource_type = 'News';

$args = array(  
    'post_type' => 'resources',
    'post_status' => 'publish',
    'posts_per_page' => $card_count,
    //'cat' => $resource_type,
    'tax_query' => array(
        array(
            'taxonomy' => 'type',
            'terms' => $resource_type,
        )
    )
);

2 个答案:

答案 0 :(得分:0)

尝试一下:

'tax_query' => array( array( 'taxonomy' => 'type', 'terms' => $resource_type, 'field' => 'name', // or 'slug' 'operator' => 'IN' ) ),

答案 1 :(得分:0)

我的猜测是,您需要指定要查找的是分类法的String,默认情况下可能正在寻找name

ID

您可以阅读文档以获得更好的理解-或者,如果您想作弊,这是一个不错的生成器:process.env