WordPress Post Format - markhowellsmead/helpers GitHub Wiki
Query for specific post formats
$query = new WP_Query(array(
'posts_per_page' => -1,
'post_status' => 'draft',
'post_type' => 'post',
'fields' => 'ids',
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array(
// 'post-format-aside',
// 'post-format-audio',
// 'post-format-chat',
// 'post-format-gallery',
'post-format-image',
// 'post-format-link',
// 'post-format-quote',
// 'post-format-status',
// 'post-format-video'
),
//'operator' => 'NOT IN'
)
)
));