geilt

Getting Posts without a Thumbnail

Aug 18th, 2013
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. $spotlight_args = array(
  3.     'orderby'  => 'post_date',
  4.     'order'    => 'DESC'
  5.     'meta_query' =>
  6.     array(
  7.         'relation' => 'AND',
  8.         array('key' => '_thumbnail_id',
  9.             'value' => '',
  10.             'compare' => 'NOT EXISTS')
  11.     )
  12. );
  13.    
  14.  $spotlight_posts = get_posts( $spotlight_args );
Advertisement
Add Comment
Please, Sign In to add comment