/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// 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');