Created
April 17, 2014 16:55
-
-
Save thadallender/10997770 to your computer and use it in GitHub Desktop.
Exclude Sell Media from native WP search results
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
| function my_search_filter( $query ) { | |
| if ( !$query->is_admin && $query->is_search ) { | |
| $query->set( 'post_type', array('post', 'page' ) ); | |
| } | |
| return $query; | |
| } | |
| add_filter( 'pre_get_posts', 'my_search_filter' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment