Skip to content

Instantly share code, notes, and snippets.

@richtabor
Last active August 29, 2015 13:58
Show Gist options
  • Save richtabor/10288328 to your computer and use it in GitHub Desktop.
Save richtabor/10288328 to your computer and use it in GitHub Desktop.
<?php $args = array(
'orderby' => 'date',
'order' => 'DSC',
'posts_per_page'=> 3,
'meta_key' => '_thumbnail_id',
'tax_query' => array( //DO NOT ALLOW IMAGE POST FORMATS
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => 'post-format-image',
'operator' => 'NOT IN',
)
)
);
query_posts($args); if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment