U kunt het download-posttype uitsluiten van de zoekfunctie door dit codefragment toe te voegen aan uw site-specifieke plugin of 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' );
