Wordpress,如何根据自定义帖子类型的分类法进行过滤

时间:2015-12-23 14:22:05

标签: wordpress custom-taxonomy

我创建了名为“Syllabi Archive”的自定义帖子类型,并添加了自定义分类法命名为“程序,学年和学期”,现在我想通过Taxonomy过滤帖子,如图所示

enter image description here

1 个答案:

答案 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', 
            ) 
        ) 
    ) );