2014-04-26 88 views

回答

0
<?php $custom_query = new WP_Query('cat=9'); //your category id 
while($custom_query->have_posts()) : $custom_query->the_post(); ?> 

    //loop items go here 

<?php endwhile; ?> 
<?php wp_reset_postdata(); // reset the query ?> 
2

這樣做:

$wp_query = new WP_Query(array(
      'post_type' => 'post', 
      'paged' => $paged, 
      'category_name' => 'News World' 
     )); 

this reference。請注意,您不應使用類別名稱。你需要類別SLUG。因此,請確保您的類別新聞世界已經slu「」新聞世界「。

+0

感謝它爲我工作。 – Ganesh

相關問題