參考了WordPress函数:query_posts(查询文章),
以及WordPress函数query_posts用法汇总, 他們說得很清楚
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// 新增程式碼開始 //這地方618為文章分類ID, 這個要自己查 (後臺編輯分類時,看網址ID) //showposts為要顯示幾個, category__in為分類ID, modified表示依照修改更新時間排序 < ?php query_posts('category__in=618&showposts=2&orderby=modified'); ? > //這部分就根據index.php裡面怎麼寫, 就自己複製一份來改 < ?php if ( have_posts() ) : ? > < ?php while ( have_posts() ) : the_post(); ? > xxxxxxxxxxx < ?php endwhile; ? > < ?php endif; ?> // 重置查询 < ?php wp_reset_query(); ? > // 新增程式結束 |
順道一提, 文章排序也可以依照修改更新時間排! 請看這篇文章