我已使用在模板中注册自定义帖子类型文章register_post_type 作用我还为本文帖子提供了分类法类别。
在这里,我想过滤特定类别下的帖子。使用查询帖子
我该怎么做
提前感谢!
我已使用在模板中注册自定义帖子类型文章register_post_type 作用我还为本文帖子提供了分类法类别。
在这里,我想过滤特定类别下的帖子。使用查询帖子
我该怎么做
提前感谢!
如果你阅读http://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_Parameters 它详细地概述了您需要的一切。看一下下面从codex中提取的代码示例。它应该可以帮助您:)
$args = array(
\'post_type\' => \'Article\', /* This is where you should put your Post Type */
\'tax_query\' => array(
array(
\'taxonomy\' => \'people\',
\'field\' => \'slug\',
\'terms\' => \'bob\'
)
)
);
$query = new WP_Query( $args );
请注意,此查询不考虑分页数据。