get_posts date not working
-
on this page i have the code below to pull in the two most recent posts. however for some reason, the date it says below the title is January 20, 2011 for both posts event though they both have two different “Published Dates” than that.
why’s this happening???
<h2>The Latest at Cornerstone</h2> <?php $latestposts = get_posts('numberposts=2&category=1'); foreach($latestposts as $post) : setup_postdata($post); ?> <h3><a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a></h3> <h6><?php the_date(); ?></h6> <?php the_content(); ?> <?php endforeach; ?>
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
The topic ‘get_posts date not working’ is closed to new replies.