Created
September 17, 2017 17:52
-
-
Save celticwebdesign/b3edb2e27facd49b7990aa98325bfe89 to your computer and use it in GitHub Desktop.
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
// http://www.wpbeginner.com/wp-tutorials/how-to-limit-search-results-for-specific-post-types-in-wordpress/ | |
function searchfilter($query) { | |
if ($query->is_search && !is_admin() ) { | |
$query->set('post_type',array('recipes')); | |
$query->set('posts_per_page',10); | |
} | |
return $query; | |
} | |
add_filter('pre_get_posts','searchfilter'); | |
// used for short section immediately below |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment