Don't show pages or objects in recent posts.
git-svn-id: https://develop.svn.wordpress.org/trunk@2281 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
5352fe6dbe
commit
4bfdef5908
@ -84,7 +84,7 @@ function wp_get_recent_posts($num = 10) {
|
||||
$limit = "LIMIT $num";
|
||||
}
|
||||
|
||||
$sql = "SELECT * FROM $wpdb->posts ORDER BY post_date DESC $limit";
|
||||
$sql = "SELECT * FROM $wpdb->posts WHERE post_status IN ('publish', 'draft', 'private') ORDER BY post_date DESC $limit";
|
||||
$result = $wpdb->get_results($sql,ARRAY_A);
|
||||
|
||||
return $result?$result:array();
|
||||
|
Loading…
Reference in New Issue
Block a user