Adding Author Support to Downloads
You can easily add support for author selection on your digital products by placing a simple function into your theme’s functions.php file, or any custom plugin file.
function pw_edd_add_author_support($supports) { $supports[] = 'author'; return $supports; } add_filter('edd_download_supports', 'pw_edd_add_author_support');