我创建了名为“Syllabi Archive”的自定义帖子类型,并添加了自定义分类法命名为“程序,学年和学期”,现在我想通过Taxonomy过滤帖子,如图所示
答案 0 :(得分:0)
我认为你需要这样的东西:
query_posts( array(
'post_type' => 'Syllabi Archive', // name without spaces
'posts_per_page' => -1, // show to all posts
'tax_query' => array(
array(
'taxonomy' => 'Program, Academic Year and Semester', //or tag or custom taxonomy without spaces
'field' => 'id',
)
)
) );