Advertisement
Guest User

Untitled

a guest
Mar 20th, 2013
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. $querystr = "
  4. SELECT $wpdb->posts.*
  5. FROM $wpdb->posts
  6. WHERE $wpdb->posts.post_type = 'post'
  7. AND $wpdb->posts.post_status = 'publish'
  8. OR $wpdb->posts.post_status = 'future'
  9.  
  10. ORDER BY $wpdb->posts.post_date ASC
  11. ";
  12.  
  13. $pageposts = $wpdb->get_results($querystr, OBJECT);
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement