Changeset 2281

Show
Ignore:
Timestamp:
02/12/05 05:25:09 (4 years ago)
Author:
saxmatt
Message:

Don't show pages or objects in recent posts.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/functions-post.php

    r2269 r2281  
    8585    } 
    8686 
    87     $sql = "SELECT * FROM $wpdb->posts ORDER BY post_date DESC $limit"; 
     87    $sql = "SELECT * FROM $wpdb->posts WHERE post_status IN ('publish', 'draft', 'private') ORDER BY post_date DESC $limit"; 
    8888    $result = $wpdb->get_results($sql,ARRAY_A); 
    8989