Created
June 12, 2013 12:54
-
-
Save sunnyratilal/5764997 to your computer and use it in GitHub Desktop.
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
function custom_edd_add_custom_field_support( $supports ) { | |
$new = array( 'custom-fields' ); | |
return array_merge( $new, $supports ); | |
} | |
add_filter( 'edd_download_supports', 'custom_edd_add_custom_field_support' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment