Last active
December 23, 2015 13:59
-
-
Save amdrew/6645804 to your computer and use it in GitHub Desktop.
Exclude downloads from search in Easy Digital Downloads
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Exclude downloads from search | |
*/ | |
function my_child_theme_download_post_type_args( $download_args ) { | |
$download_args['exclude_from_search'] = true; | |
return $download_args; | |
} | |
add_action( 'edd_download_post_type_args', 'my_child_theme_download_post_type_args' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment