我有一個顯示最新消息的wordpress頁面。我想分頁這些新聞了,這是我的代碼:Wordpress分頁
<?php
query_posts('posts_per_page=5');
?>
<?php
while (have_posts()):
the_post();
?>
<div class="news"><h1><a href="<?php
the_permalink();
?>" rel="news" title="<?php
the_title_attribute();
?>"><?php
the_title();
?></a></h1>
<p>
<?php
the_excerpt();
?>
</p>
</div>
<?php
endwhile;
?>
<p><?php
wp_pagenavi();
?></p>
<?php
wp_reset_query();
?>
我有一個頁面內容的代碼,我使用的exec-PHP插件來解析的代碼。問題是,當我點擊頁面2時,我仍然看到頁面1的消息。所以分頁不起作用。
有什麼想法?
在我的檔案(archive.php)頁面上我也嘗試了分頁,但是當我點擊第2頁時,我在主頁上重定向。
請幫幫我!
我假定query_posts()需要的參數,並自動地調整基於 'CURRENT_PAGE' 參數的查詢。我也不知道里面的代碼。 :○ – fabrik 2010-07-05 14:04:28