Get 3 Most Recent Posts
-
I am trying to get the three most recent posts, but my code doesn’t appear to be working. Can please something tell me what I’ve done wrong?
<?php $args = array( post_type' => 'story', 'offset' => 1, 'numberposts' => 3, )); $recent_posts = wp_get_recent_posts( $args ); foreach( $recent_posts as $post ){ echo '<div class="awt-static-tweet"><a href="' . get_permalink($post["ID"]) . '" title="Look '.$post["post_title"].'" >' . $post["post_title"].'</a> </div> <div class="awt-static-divider"></div> '; } ?>
Thanks,
Jon
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Get 3 Most Recent Posts’ is closed to new replies.