Skip to content

Instantly share code, notes, and snippets.

@kovshenin
Created February 17, 2014 16:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kovshenin/9053956 to your computer and use it in GitHub Desktop.
Save kovshenin/9053956 to your computer and use it in GitHub Desktop.
<?php
$args = array(
'post_type' => 'post',
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'operator' => 'NOT IN'
'terms' => get_post_format_slugs(),
)
)
);
$query = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment