Skip to main content
Easy Digital Downloads Documentation
Documentation, Reference Materials, and Tutorials for Easy Digital Downloads

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');