• 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?

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Way to make home autoload the latest post?’ is closed to new replies.