Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active December 19, 2015 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpspeak/5969458 to your computer and use it in GitHub Desktop.
Save wpspeak/5969458 to your computer and use it in GitHub Desktop.
Exclude Post Formats from Blog
<?php
/**
* Exclude Post Formats from Blog
*
* @author Bill Erickson
* @link http://www.billerickson.net/customize-the-wordpress-query/
* @param object $query data
*
*/
function be_exclude_post_formats_from_blog( $query ) {
if( $query->is_main_query() && $query->is_home() ) {
$tax_query = array( array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array('post-format-link' ),
'operator' => 'NOT IN',
) );
$query->set( 'tax_query', $tax_query );
}
}
add_action( 'pre_get_posts', 'be_exclude_post_formats_from_blog' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment