2015-12-23 109 views

回答

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', 
      ) 
     ) 
    )); 
相關問題