2015-04-30 78 views
2

我想在我的WordPress上有一個靜態的首頁,這個靜態頁面應該顯示最新的5個帖子和低於6個自定義元字段。這就是爲什麼我將最後的帖子的閱讀設置改爲「靜態頁面」,否則我不可能訪問自定義元字段。WordPress的 - 靜態首頁應該顯示最新帖子

如何在頭版中添加最新的5篇博文,並使用默認的博文模板/輸出。

我與此查詢做到了:

$latest_blog_posts = new WP_Query(array('posts_per_page' => 5)); 
    if ($latest_blog_posts->have_posts()) : while ($latest_blog_posts->have_posts()) : $latest_blog_posts->the_post(); 
     // Loop output goes here 
    endwhile; endif; 

我現在必須完全地重寫了這裏後的代碼或者我可以只包括以某種方式在帖子模板?

謝謝!

回答

1

你需要寫這條線,以顯示最新的帖子:

<?php 
wp_get_archives(array('type' => 'postbypost', 'limit' => 10, 'format' => 'html')); 
?> 

檢查this link更多細節

+0

我認爲你的co de sample沒有正確格式化。 – Huey

0

而不是WP_Query你應該嘗試

wp_get_recent_posts($args, $output); 

檢查的詳細信息here

相關問題