我使用下面的代码试图排除格式“post format quote”,但它排除了所有帖子,包括标准格式(无格式)的帖子。
$myposts = new WP_Query(array(
\'tax_query\' => array(
\'taxonomy\' => \'post_format\',
\'field\' => \'slug\',
\'terms\' => array(\'post-format-quote\'),
\'operator\' => \'NOT IN\'
),
\'posts_per_page\' => 3
)
);
最合适的回答,由SO网友:chrisguitarguy 整理而成
tax_query
获取数组的数组。试试这个:
$myposts = new WP_Query(array(
\'tax_query\' => array(
array(
\'taxonomy\' => \'post_format\',
\'field\' => \'slug\',
\'terms\' => array(\'post-format-quote\'),
\'operator\' => \'NOT IN\'
)
),
\'posts_per_page\' => 3
)
);
进一步阅读:
http://ottopress.com/2010/wordpress-3-1-advanced-taxonomy-queries/