WPML
add_filter( 'wcml_product_custom_prices', 'the_callback_function', 10, 3 );
유형
filter
카테고리
다중 통화 기능
WooCommerce Multilingual 버전
3.8.2

설명

제품에 설정된 사용자 정의 가격을 필터링합니다.

인수

이 필터에는 3개의 매개변수가 전달됩니다.

$custom_prices


(array) 사용자 정의 가격 배열입니다. 포함된 키는 다음과 같습니다.

'_price', '_regular_price', '_sale_price',
'_min_variation_price',
'_max_variation_price',
'_min_variation_regular_price', '_max_variation_regular_price',
'_min_variation_sale_price',
'_max_variation_sale_price'


$product_id

(integer) 제품 ID입니다.

$currency

(string) 사용자 정의 가격이 저장되는 두 번째 통화입니다(예: “USD”, “EUR” 등).

사용 예시

예제
/*
 * Add this code to the functions.php file of your theme.
 *
 * Assume: 
 * EUR = the default currency
 * USD = the second currency
 */
 
add_filter( 'wcml_product_custom_prices', 'change_product_custom_prices', 10, 3 );

function change_product_custom_prices( $custom_prices, $product_id, $currency ) {

	// Change all custom prices in USD to 99 
	if ( 'USD' == $currency ) {
		$custom_prices[ '_price' ] = 99;
	}

	return $custom_prices; 
}

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_custom_prices_strings, wcml_switch_currency, wcml_custom_prices_fields, wcml_multi_currency_ajax_actions

모든 다중 통화 기능 훅 24개 →