mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-04 12:22:24 +08:00
5 lines
276 B
Text
5 lines
276 B
Text
function pw_edd_custom_currency_format( $formatted, $currency, $price ) {
|
|
return $price . ' USD';
|
|
}
|
|
add_filter( 'edd_usd_currency_filter_before', 'pw_edd_custom_currency_format', 10, 3 );
|
|
add_filter( 'edd_usd_currency_filter_after', 'pw_edd_custom_currency_format', 10, 3 );
|