Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geotsiokos/def0c185804602e9fc3b999c01390736 to your computer and use it in GitHub Desktop.
Save geotsiokos/def0c185804602e9fc3b999c01390736 to your computer and use it in GitHub Desktop.
add_filter( 'affiliates_supported_currencies', 'example_affiliates_supported_currencies' );
function example_affiliates_supported_currencies( $currencies ) {
$currencies[] = 'INR';
return $currencies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment