Created
November 26, 2020 08:00
-
-
Save dryan1144/82aab71156e3ef714678928f55e352ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function drw_edd_global_labels($labels) { | |
$labels = array( | |
'singular' => __('Product','edd'), | |
'plural' => __('Products','edd') | |
); | |
return $labels; | |
} | |
add_filter('edd_default_downloads_name', 'drw_edd_global_labels'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment