# Change Global Download Labels

 The global labels, Download and Downloads, used throughout Easy Digital Downloads are extremely easy to change. Just use the simple filter function shown below:

```

function pw_edd_product_labels( $labels ) {
	$labels = array(
	   &#039;singular&#039; =&gt; __(&#039;Product&#039;, &#039;your-domain&#039;),
	   &#039;plural&#039;   =&gt; __(&#039;Products&#039;, &#039;your-domain&#039;)
	);
	return $labels;
}
add_filter(&#039;edd_default_downloads_name&#039;, &#039;pw_edd_product_labels&#039;);
```

 If you need complete control over each of the labels used for the custom post type, then read [this doc](https://easydigitaldownloads.com/docs/modify-the-download-post-type-admin-labels/).