Guest User

Untitled

a guest
Nov 18th, 2018
101
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. $wQuery = new WP_Query(
  4. array('post_type' => 'post',
  5. 'posts_per_page' => $how_many,
  6. 'cat' => '46,43', // categories should be supplied this way (an array doesn't work)
  7. 'meta_key' => 'post_views' ,
  8. 'orderby' => 'meta_value_num', // or meta_value (if it's a string)
  9. 'order' => 'DESC')
  10. );
  11.  
  12.  
  13.  
  14.  
  15. ?>
Add Comment
Please, Sign In to add comment