显示带有特定插件的自定义类别的自定义帖子

时间:2017-11-16 作者:Sam

我试图通过一个自定义类别的自定义帖子,只显示一个特定的slug。

e、 g.定制职位(工作委员会)-定制类别(工作部门)-特定Slug(工业)

迄今为止,我所展示的是;

$args = array(
    \'post_type\' => \'post\',
    \'tax_query\' => array(
        array(
            \'taxonomy\' => \'job-sector\',
            \'field\' => \'industrial\', //can be set to ID
        )
    )
);
然而,似乎什么都没有表现出来。。。有人能帮忙或建议我哪里出了问题吗?

谢谢

2 个回复
最合适的回答,由SO网友:Drupalizeme 整理而成

尝试以下操作:使用post\\u键入您的CPT的名称

$args = array(
    \'post_type\' => \'your_cpt_name\',
    \'tax_query\' => array(
        array(
            \'taxonomy\' => \'job-sector\',
            \'field\' => \'slug\',
            \'terms\' => \'industrial\',
        )
    )
);
$query = new WP_Query( $args );

SO网友:dalveer

使用此

$arg=数组(\'post\\u type\'=>\'custom\\u post\\u type\\u name\',

\'tax_query\' => array(
    array(
        \'taxonomy\' => \'Brand\',
        \'field\' => \'slug\',
        \'terms\' => \'Nokia\',
    )
)
);

$query=新的WP\\U查询($arg);

结束

相关推荐

Filter posts on new page

我想为分类页面上的帖子创建过滤器。我想为这些过滤器创建新页面,并将指向它们的链接放在分类页面上,但我需要保存URL结构。例如,目前我有:http://example.com/custom_taxonomy/term/child_term例如,我想按价格订购帖子,我想有下一个URL:http://example.com/custom_taxonomy/term/child_term/low-pricehttp://example.com/custom_taxonomy/term/child_term/hig