2010-01-31 62 views
1

我們已選擇在管理控制檯中顯示每頁5個帖子。不同數量的帖子(WordPress)

而我們希望在特定類別中顯示每頁10個帖子(例如,「projects」width id = 2)。

我們該怎麼做?

回答

1

將正常循環更改爲query post。像

if (is_category(2)){ 

//The Query 
query_posts('posts_per_page=5'); 

//The Loop 
if (have_posts()) : while (have_posts()) : the_post(); 
    the_content(); 
endwhile; else: 
    echo'Nothing here...'; 
endif; 

//Reset Query 
wp_reset_query(); 

} 
1

這應該只在主迴路中使用。 。如果你想在主體之外創建單獨的循環,你應該創建單獨的WP_Query對象並使用它們。

乾杯 八里Madra

1

我有同樣的問題。

這爲我工作:

if (is_category(2)){ 
global $query_string; 
query_posts($query_string . "&posts_per_page=500"); 
相關問題