# Hiding Downloads from Search

 You can exclude the downloads post type from search by adding this code snippet to your site specific plugin or functions.php:

```
function pw_edd_hide_from_search( $args ) {
	$args[&#039;exclude_from_search&#039;] = true;
	return $args;
}
add_filter( &#039;edd_download_post_type_args&#039;, &#039;pw_edd_hide_from_search&#039; );&lt;br&gt;&lt;/br&gt;
```