I'd like to make my home page default to the permalink of the latest post. Does anyone happen to know of a plugin that does this?
I'd like to make my home page default to the permalink of the latest post. Does anyone happen to know of a plugin that does this?
You could try adding <?php if (is_home()) query_posts('showposts=1');?> just before The Loop:
<?php if (is_home()) query_posts('showposts=1');?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();Does this work for anyone? It doesn't for me. I want to show the actual post, i.e. the 'single.php' as the homepage.
You must log in to post.