function exclude_post_formats( $query ) {
if ( $query->is_main_query() && $query->is_home() ) {
$tax_query = array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array(
'post-format-aside'
),
'operator' => 'NOT IN',
)
);
$query->set( 'tax_query', $tax_query );
}
}
add_action( 'pre_get_posts', 'exclude_post_formats' );
↧
Exclude Specific Post Formats from Main Loop
↧