Last active
December 19, 2015 14:29
-
-
Save wpspeak/5969458 to your computer and use it in GitHub Desktop.
Exclude Post Formats from Blog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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