Quantcast
Channel: code snippets – I'm not really a geek I just play one on the internet.
Viewing all articles
Browse latest Browse all 3

Exclude Specific Post Formats from Main Loop

$
0
0
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' );

Viewing all articles
Browse latest Browse all 3

Trending Articles