<html lang="it-it" dir="ltr"><head></head><body># Nascondere i download dalla ricerca

 Puoi escludere il tipo di post dei download dalla ricerca aggiungendo questo snippet di codice al tuo plugin specifico per il sito o a functions.php:

```
function pw_edd_hide_from_search( $args ) {
	$args['exclude_from_search'] = true;
	return $args;
}
add_filter( 'edd_download_post_type_args', 'pw_edd_hide_from_search' );&lt;br&gt;&lt;/br&gt;
```</body></html>