/ Published in: PHP
                    
                                        
To exclude pages from wordpress search results include the following in your theme's functions.php
                
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
/*
*Only Search Posts
*/
function SearchFilter($query) {
if ($query->is_search) {
$query->set('post_type', 'post');
}
return $query;
}
add_filter('pre_get_posts','SearchFilter');
Comments
 Subscribe to comments
                    Subscribe to comments
                
                