Skip to content

Instantly share code, notes, and snippets.

@woogists
woogists / wc-add-currency-symbol.php
Last active May 12, 2024 17:38
Add a custom currency / symbol
/**
* Custom currency and currency symbol
*/
add_filter( 'woocommerce_currencies', 'add_my_currency' );
function add_my_currency( $currencies ) {
$currencies['ABC'] = __( 'Currency name', 'woocommerce' );
return $currencies;
}