# Modify the Download Post Type Admin Labels

You can easily change the labels of the Downloads post type by placing a simple function in your theme&#039;s functions.php, or any custom plugin. You might, for example, want to change &quot;Downloads&quot; to &quot;Music&quot;, or perhaps to &quot;Products&quot;.

The example below changes Download(s) to Product(s):

```
function set_download_labels($labels) {
    $labels = array(
        &#039;name&#039; =&gt; _x(&#039;Products&#039;, &#039;post type general name&#039;, &#039;your-domain&#039;),
        &#039;singular_name&#039; =&gt; _x(&#039;Product&#039;, &#039;post type singular name&#039;, &#039;your-domain&#039;),
        &#039;add_new&#039; =&gt; __(&#039;Add New&#039;, &#039;your-domain&#039;),
        &#039;add_new_item&#039; =&gt; __(&#039;Add New Product&#039;, &#039;your-domain&#039;),
        &#039;edit_item&#039; =&gt; __(&#039;Edit Product&#039;, &#039;your-domain&#039;),
        &#039;new_item&#039; =&gt; __(&#039;New Product&#039;, &#039;your-domain&#039;),
        &#039;all_items&#039; =&gt; __(&#039;All Products&#039;, &#039;your-domain&#039;),
        &#039;view_item&#039; =&gt; __(&#039;View Product&#039;, &#039;your-domain&#039;),
        &#039;search_items&#039; =&gt; __(&#039;Search Products&#039;, &#039;your-domain&#039;),
        &#039;not_found&#039; =&gt;  __(&#039;No Products found&#039;, &#039;your-domain&#039;),
        &#039;not_found_in_trash&#039; =&gt; __(&#039;No Products found in Trash&#039;, &#039;your-domain&#039;), 
        &#039;parent_item_colon&#039; =&gt; &#039;&#039;,
        &#039;menu_name&#039; =&gt; __(&#039;Products&#039;, &#039;your-domain&#039;),
        &#039;featured_image&#039;        =&gt; __( &#039;%1$s Image&#039;, &#039;easy-digital-downloads&#039; ),
        &#039;set_featured_image&#039;    =&gt; __( &#039;Set %1$s Image&#039;, &#039;easy-digital-downloads&#039; ),
        &#039;remove_featured_image&#039; =&gt; __( &#039;Remove %1$s Image&#039;, &#039;easy-digital-downloads&#039; ),
        &#039;use_featured_image&#039;    =&gt; __( &#039;Use as %1$s Image&#039;, &#039;easy-digital-downloads&#039; ),
    );
    return $labels;
}
add_filter(&#039;edd_download_labels&#039;, &#039;set_download_labels&#039;);
```