Exclude events from search results?

Home Forums Calendar Products Events Calendar PRO Exclude events from search results?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #14380
    Perry
    Participant

    I’d like to exclude events from the search results. How can I achieve this? Thanks.

    #14403
    Rob
    Member

    Hi there Perry. This should be doable, but I’m not sure how. Let me see if our dev Jonah can suggest something.

    #14416
    Jonah
    Participant

    Hi Perry,

    Try adding this to your functions.php file:


    function exclude_from_search($query) {
    if ($query->is_search) {
    $query->set('post_type', 'post');
    }
    return $query;
    }
    add_filter('pre_get_posts','exclude_from_search');

    #14422
    Perry
    Participant

    worked great. thanks so much!

    #14428
    Jonah
    Participant

    Awesome!

    #975454
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Exclude events from search results?’ is closed to new replies.