the_date() is not appearing on my posts.
-
The date does not appear AT ALL on my posts created with this code:
<?php query_posts(‘category_name=Featured Photo&showposts=1’); ?>
<?php while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<p style=”color: #ffffff; font-family: tahoma, geneva; font-size: 10pt; margin-left: 30px;”><?php the_content(); ?></p>
<p style=”color: #ffffff; font-family: tahoma, geneva; font-size: 10pt; margin-left: 20px;”>Posted by <?php the_author(); ?> on <?php the_date(); ?></p>
<?php endwhile; ?>Funny thing is, I use the EXACT same code earlier in the page, and it works perfectly there, I copied it to a different div, changed the “category_name” and now no date appears whatsoever.
Any help is greatly appreciated!
- The topic ‘the_date() is not appearing on my posts.’ is closed to new replies.