WPML
apply_filters( 'wcml_formatted_price', integer/float $price, string $currency )
Tipo
filter
Categoria
Recurso multimoeda
Versão do WooCommerce Multilingual
3.5

Descrição

Converta um preço da moeda padrão para a moeda selecionada, usando o formato correto.

Argumentos

$price
(integer/float) (Obrigatório) O preço bruto na moeda padrão.
$currency
(string) (Opcional) O código da moeda para a qual você deseja converter o preço, por exemplo, “USD”, “EUR”, etc. Se este parâmetro não for definido, será usada a moeda atual no front-end.

Exemplo de uso

Exemplo
/*
Assume: 
 * EUR = the default currency
 * USD = the second currency
 * 1.2 = the exchange rate EUR / USD 
*/ 

$price = 1234.56;
$currency = 'USD';
$formatted_price = apply_filters( 'wcml_formatted_price', $price, $currency );

echo $formatted_price; // Return $1,481.47

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_currencies_without_cents, wcml_product_custom_prices, wcml_custom_prices_strings, wcml_switch_currency, wcml_custom_prices_fields

Todos os 24 hooks de Recurso multimoeda →