/ Published in: PHP
Expand |
Embed | Plain Text
// Only search posts, and custom post types, excluding pages function search_posts_filter( $query ){ if ($query->is_search){ } return $query; } add_filter('pre_get_posts','search_posts_filter');
You need to login to post a comment.
