在自定义分类中显示类别的帖子时出现问题

时间:2017-11-20 作者:wickywills

我有一个自定义的帖子类型,叫做listing 还有一种自定义分类法listing_category. 当我导航到[DOMAIN]/listing/things-to-do, 我想与类别的职位things-do-do 仅显示,但当前listing 将显示post类型。我正在使用以下内容:

$args = array( 
    \'posts_per_page\'        => get_option(\'posts_per_page\'), 
    \'post_type\'             => \'listing\',
    \'tax_query\'             => [
        \'taxonomy\'          => \'listing_category\',
        \'field\'             => \'slug\',
        \'terms\'             => array(81)
    ]
);
81 作为things-to-do 类别,虽然我也尝试过slug-仍然没有乐趣。

我这里缺什么?

1 个回复
SO网友:Lovin Nagi
$args = array(
    \'posts_per_page\' => get_option(\'posts_per_page\'),   
    \'post_type\' => \'listing\',
    \'tax_query\' => array(
        array(
            \'taxonomy\' => \'listing_category\',
            \'field\' => \'slug\', //can be set to ID
            \'terms\' => array(81) 
        )
    )
);
$query = new WP_Query( $args );
结束

相关推荐