Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. select id, post_title, post_date, post_modified
  2. from wp_posts
  3. where post_type='post' and post_status='publish' and post_date<>post_modified
  4. order by post_modified desc
  5. limit 0,10
  6.  
  7. $query = new WP_Query(array('orderby' => 'post_modified', 'order' => 'DESC', 'post_type'=>'post','post_status' => 'publish') );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement