Last active
August 29, 2015 13:58
-
-
Save richtabor/10288328 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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