我试图通过一个自定义类别的自定义帖子,只显示一个特定的slug。
e、 g.定制职位(工作委员会)-定制类别(工作部门)-特定Slug(工业)
迄今为止,我所展示的是;
$args = array(
\'post_type\' => \'post\',
\'tax_query\' => array(
array(
\'taxonomy\' => \'job-sector\',
\'field\' => \'industrial\', //can be set to ID
)
)
);
然而,似乎什么都没有表现出来。。。有人能帮忙或建议我哪里出了问题吗?
谢谢
最合适的回答,由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 );