treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Wordpress Search

  • I noticed when you search for a page (ex. Home, Contact) on my website you get just that. How can I exclude pages from being searched?
  • For future reference to anyone wanting to fix this problem.
    Add this to your theme's functions.php file
    function SearchFilter($query) {
    if ($query->is_search) {
    $query->set('post_type', 'post');
    }
    return $query;
    }

    add_filter('pre_get_posts','SearchFilter');