如何从帖子类型分类中查询帖子?

时间:2020-01-27 16:43:40

标签: wordpress dynamicquery

我使用此代码进行匹配

当前默认帖子标题提示 与 类别词条

if ( is_singular( 'post' ) ) {

$current_post_slug = get_post_field( 'post_name' );
        $args['category_name'] = $current_post_slug;
        $args['post_type'] = 'post';

但是我想将当前的默认帖子标题条与帖子类型自定义分类法术语条匹配。 我的自定义分类名称为“ itemscategory”,我的自定义帖子类型名称为“ items”。

所以我将代码更改为

if ( is_singular( 'post' ) ) {

$current_post_slug = get_post_field( 'post_name' );
'tax_query' => array(
    array(
        'taxonomy' => 'itemscategory',

    )
),
        $args['category_name'] = $current_post_slug;
        $args['post_type'] = 'items';

但是它不起作用。 我在做什么错了?

0 个答案:

没有答案