Skip to content

Instantly share code, notes, and snippets.

@amdrew
Last active December 23, 2015 13:59
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 amdrew/6645804 to your computer and use it in GitHub Desktop.
Save amdrew/6645804 to your computer and use it in GitHub Desktop.
Exclude downloads from search in Easy Digital Downloads
<?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