Skip to content

Instantly share code, notes, and snippets.

@mestrewp
Created May 28, 2012 18:29
Show Gist options
  • Save mestrewp/2820517 to your computer and use it in GitHub Desktop.
Save mestrewp/2820517 to your computer and use it in GitHub Desktop.
show only posts with featured_image
<?
//change showposts for posts-per-page if you a are running a newest version of wordpress
$args = array('showposts' => 10,'meta_query' => array(array('key' => 'featured_image','value' => '','compare' => '!=')));
$result = new WP_Query( $args );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment