Skip to content

Instantly share code, notes, and snippets.

@amdrew
Last active December 28, 2015 09:19
Show Gist options
  • Select an option

  • Save amdrew/7477894 to your computer and use it in GitHub Desktop.

Select an option

Save amdrew/7477894 to your computer and use it in GitHub Desktop.
Add a new currency to Easy Digital Downloads
<?php
function my_child_theme_edd_add_currency( $currencies ) {
// change these values
$currencies['YNC'] = 'Your New Currency';
return $currencies;
}
add_filter( 'edd_currencies', 'my_child_theme_edd_add_currency' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment