0
我正在開發wordpress網站,我在主頁上顯示最新的3個帖子項目(基於類別),我想給「更多新聞」鏈接查看所有帖子與分頁在單獨的頁面..我如何顯示它?如何在wordpress網站中顯示更多的分頁文章?
我正在開發wordpress網站,我在主頁上顯示最新的3個帖子項目(基於類別),我想給「更多新聞」鏈接查看所有帖子與分頁在單獨的頁面..我如何顯示它?如何在wordpress網站中顯示更多的分頁文章?
<?php
query_posts('cat=-category_id&posts_per_page=3');
while (have_posts()) : the_post();
the_title();
the_content('Read the full post »'); or the_excerpt();
endwhile;
wp_reset_query();
<a href="pass category url">Caegory Link</a>
?>
對於尋呼你可以使用wp頁面navi插件。
非常感謝 – logudotcom 2012-02-06 11:41:27