Recent Posts showing drafts
-
Hello,
I’m using the following code to show my recent posts. However, it’s also showing the titles of our drafts.
<?php $number_recents_posts = 10;//Can be how much you want $recent_posts = wp_get_recent_posts( $number_recents_posts ); foreach($recent_posts as $post){ echo '<li><a href="' . get_permalink($post["ID"]) . '" title="Look '.$post["post_title"].'" >' . $post["post_title"].'</a><br /><div class="newsdate">Posted: '.$post["post_date"].'</div></li> '; } ?>Any idea how to exclude drafts or only show published titles?
Thanks,
Andy
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Recent Posts showing drafts’ is closed to new replies.