# 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&#039;s functions.php file, or any custom plugin file.

```
function pw_edd_add_author_support($supports) {
	$supports[] = &#039;author&#039;;
	return $supports;	
}
add_filter(&#039;edd_download_supports&#039;, &#039;pw_edd_add_author_support&#039;);&lt;br&gt;&lt;/br&gt;
```