Advertisement
BoiteAWeb

Untitled

Mar 26th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1.         $ids = new WP_Query( array( 'posts_per_page' => 10,
  2.                         'no_found_rows' => true,
  3.                         'post_status' => 'publish',
  4.                         'ignore_sticky_posts' => true,
  5.                         'meta_key' => _count-views_all,
  6.                         'meta_value_num' => '0',
  7.                         'meta_compare' => '>',
  8.                         'orderby'=>'meta_value_num',
  9.                         'order'=>'DESC',
  10.                         'fields'=>'ids',
  11.                         'post_type'=> 'post',
  12.                     )
  13.             );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement