Advertisement
srikat

Untitled

Mar 7th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // WP_Query arguments
  2. $args = array (
  3. 'category_name' => 'featured', // enter the slug of category from which posts should be pulled
  4. 'posts_per_page' => '7',
  5. 'meta_query' => array(
  6. array( 'key' => '_thumbnail_id' ) // pulls only posts with featured images
  7. ),
  8. 'orderby' => 'menu_order',
  9. 'order' => 'ASC'
  10. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement