WPML
apply_filters( 'wcml_formatted_price', integer/float $price, string $currency )
סוג
filter
גרסת WooCommerce Multilingual
3.5

תיאור

המר מחיר במטבע ברירת המחדל למטבע שנבחר, תוך שימוש בפורמט הנכון.

ארגומנטים

$price
(integer/float) (נדרש) המחיר הגולמי במטבע ברירת המחדל.
$currency
(מחרוזת) (אופציונלי) קוד המטבע שאליו תרצה להמיר את המחיר, לדוגמה “USD”, “EUR” וכו’. אם פרמטר זה אינו מוגדר, ייעשה שימוש במטבע הנוכחי המשמש בצד הלקוח.

דוגמה לשימוש

דוגמה
/*
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

כל 24 ההוקים בקטגוריה תכונת ריבוי מטבעות →