• I was wondering if there’s a quick tag that displays the date and time of the most recent post. Right now I’m using this:

    <?php if (have_posts()) :  while (have_posts()) : the_post(); ?>
    				<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_time('l, F jS, Y, g:i a') ?></a>
    			<?php endwhile; ?>
    		<?php else : ?>
    			<p class="center">Move along, nothing to see here.</p>
    		<?php endif; ?>

    But I need to be able to limit it to one post, and when I tried to do that it limited all the loops on the page to one post.

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Date and Time of Most Recent Post’ is closed to new replies.