3
我知道傳統上你可以有兩個主頁:靜態頁面(front-page.php
)和最後發佈的頁面(home.php
)。如何在Wordpress中的front-page.php(Home)中顯示最近的帖子?
現在,front-page.php(Home)是我的「索引」頁面。它有一些內容(如標語),但現在我想讓我的最後一篇文章在內容的下方顯示。
像這樣(前page.php文件):
<?php
/*
Template Name: Front Page
*/
get_header(); ?>
<?php if (have_posts()) while (have_posts()) : the_post(); ?>
<?php the_content(); ?> <--this is the tagline of my main page
<div class="line2"></div>
<?php endwhile; ?>
<<<<<<MY LAST POST HERE>>>>>>
</div><!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>