Skip to content

Instantly share code, notes, and snippets.

@jessepearson
Last active August 3, 2021 11:59
Show Gist options
  • Save jessepearson/10ba750a14b22022ef88ab7acc8aedc1 to your computer and use it in GitHub Desktop.
Save jessepearson/10ba750a14b22022ef88ab7acc8aedc1 to your computer and use it in GitHub Desktop.
Use the `wcpay_multi_currency_available_currencies` filter to add another currency to WooCommerce Payments Multi-Currencies.
<?php // do not copy this line
add_filter(
'wcpay_multi_currency_available_currencies',
function ( $currencies ) {
$currencies[] = 'BTC';
sort( $currencies );
return array_unique( $currencies );
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment