Skip to content

Instantly share code, notes, and snippets.

@codename065
Created April 5, 2020 05:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codename065/5a5b65735f873a44934dbc3012736b78 to your computer and use it in GitHub Desktop.
Save codename065/5a5b65735f873a44934dbc3012736b78 to your computer and use it in GitHub Desktop.
Remove Download Manager Packages from search
<?php
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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment