WPML
add_filter( 'wcml_exchange_rates', 'the_callback_function', 10, 1 );
ประเภท
filter
เวอร์ชันของ WooCommerce Multilingual
3.5

คำอธิบาย

กรองอัตราแลกเปลี่ยนที่ใช้โดย WPML Multilingual & Multicurrency for WooCommerce

อาร์กิวเมนต์

มีพารามิเตอร์เพียงตัวเดียวที่ส่งไปยังฟิลเตอร์นี้: exchange_rates
$exchange_rates
(array) อาร์เรย์นี้รวมอัตราแลกเปลี่ยนสกุลเงินของไซต์ของคุณเทียบกับสกุลเงินเริ่มต้น

ตัวอย่างการใช้งาน

ตัวอย่าง
/**
 * Add this code to the functions.php file of your theme.
 *
 * Assume: 
 * EUR = the default currency
 * USD = the second currency
 * 1.2 = the exchange rate EUR / USD  
 */
add_filter( 'wcml_exchange_rates', 'filter_exchange_rates', 10, 1 );

function filter_exchange_rates( $exchange_rates ) {
	$exchange_rates['USD'] = 1.5; // Change the rate EUR / USD to 1.5
	return $exchange_rates; 
}

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 รายการ →