add_filter( 'wcml_currencies_without_cents', 'the_callback_function' );
- Type
- filter
- Category
- Multi-currency Feature
- WooCommerce Multilingual Version
- 4.0.0
Description
- Filter the array of currencies without cents.
- By default, this array includes the following currencies:
array('JPY', 'TWD', 'KRW', 'BIF', 'BYR', 'CLP', 'GNF', 'ISK', 'KMF', 'PYG', 'RWF', 'VUV', 'XAF', 'XOF', 'XPF');
Arguments
There is only one parameter passed to this filter: currencies.- $currencies
- (array) The array of currencies without cents.
Example usage
Example
add_filter( 'wcml_currencies_without_cents', 'wcmlhook_currencies_without_cents' );
function wcmlhook_currencies_without_cents( $currencies ) {
$currencies[] = 'ABC' // Add a new currency to this array
return $currencies;
}
Related hooks
wcml_custom_prices_fields_labels, wcml_is_cache_enabled_for_switching_currency, wcml_geolocation_get_user_country, wcml_user_store_strategy, wcml_rounded_price, wcml_product_custom_prices, wcml_custom_prices_strings, wcml_switch_currency, wcml_custom_prices_fields, wcml_multi_currency_ajax_actions