Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Placing Recent Posts on Responsive Theme Stock Homepage Reply To: Placing Recent Posts on Responsive Theme Stock Homepage

#169201
bmoneruiux
Participant

Ok so I redid everything, and now this is the code that I’m using:

`<h4>Recent Posts:</h4>
<?php query_posts('posts_per_page=3'); ?>
<?php while (have_posts()) : the_post(); ?>
    <li style="list-style:none;">
    <h4><?php the_title(); ?></h4>
    <?php the_date(); ?>
    <a href="<?php echo get_permalink(); ?>">
                 <?php the_post_thumbnail('large_wide'); ?>
        </a>
    </li>
<?php endwhile; ?>
<?php wp_reset_query(); ?>`

Seems to work pretty good.