是否查询同一分类下的所有帖子?为什么我的代码不工作?

时间:2011-10-03 作者:Xavier

我试图显示与分类法(不是术语)相关的所有帖子,但似乎不起作用。

<?php

$args = array(
    \'post_type\' => \'projects\',
    \'tax_query\' => array(
        array(
            \'taxonomy\' => \'clients\',
            \'terms\' => \'Unilever\'
        )
    )
);
$the_query = new WP_query();
$the_query->query($args);

if($the_query->have_posts()):while($the_query->have_posts()):$the_query->the_post();

php the_title();


endwhile; endif;
wp_reset_query();

?>

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

您尚未指定“字段”值,例如。\'field\' => \'slug\',

http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters

SO网友:Tom Hartman

如果其他人正在寻找答案:

$args=数组(\'post\\u type\'=>\'项目\',\'tax\\u查询\'=>数组(\'taxonomy\'=>\'客户端\');

结束

相关推荐

List custom taxonomy terms

我正在尝试显示自定义分类法的所有术语(characters), 分类法与自定义帖子类型相关(books).我想做的是显示characters, 比如说我有两个books, 我加了三个characters 致各book, 我想显示所有六个字符。我只想得到名称,而不是链接,或者列表形式,如果我可以得到一组对象或一个更可取的数组。非常感谢。