How to disable WPdownloadmanager post from wordpress search page?

in Download Manager Free

Viewing 2 posts - 1 through 2 (of 2 total)
Apr 5, 2020 at 5:00 am
#125129
Participant
Afique X
OP

Hello, I would like to exclude wpdownloadmanager packages / posts from my wordpress search page.

error example: https://imgur.com/a/o7rRznw

you can also visit this link to see the problem: https://courseportals.com/?s=gordon+ramsay

Apr 5, 2020 at 5:45 am
#125141
Moderator
Shafayet
Staff

Hi,
To remove wpdm packages from search, please add the following code at the end of your active theme’s functions.php file:

function wpdm_remove_search($query) {
    if ($query->is_search) {
        $post_type = array('post', 'page');
        $query->set('post_type', $post_type);
    };
    return $query;
};
add_filter('pre_get_posts', 'wpdm_remove_search');
Viewing 2 posts - 1 through 2 (of 2 total)

The topic "How to disable WPdownloadmanager post from wordpress search page?" is closed to new replies.