How to disable WPdownloadmanager post from wordpress search page?

Viewing 2 posts - 1 through 2 (of 2 total)
#125129

Afique X
Participant

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

#125141

Shafayet
Moderator

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.