I know that traditionally you can have two main pages: a static page ( front-page.php) and a page for recent posts ( home.php).
Right now, front-page.php (Home) is my "index" page. It has some content (e.g. tagline), but now I want my last message to be displayed below that content.
Like this (front-page.php):
<?php
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>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
source
share