• I am currently attempting to create my own theme. Although google has been a huge help through this I am stuck on trying to display the most recent post. I would only like to display 1 post at a time. What type of PHP code do I need to include in my file.

Viewing 1 replies (of 1 total)
  • You will need to customnize the query… example

    <?php query_posts('showposts=1');
    if (have_posts()) : while (have_posts()) : the_post(); ?>

    Let me know if this works for you…

Viewing 1 replies (of 1 total)
  • The topic ‘How to display most recent post’ is closed to new replies.