WPML
wcml_user_store_strategy
유형
filter
카테고리
다중 통화 기능
WooCommerce Multilingual 버전
4.11.0

설명

저장소 전략을 재정의할 수 있습니다. 기본 저장소는 wc-session이며, 현재 유일한 대안은 cookie입니다.

인수

‘wc-session’
(문자열) 저장소 전략
$key
(문자열) 저장소를 작동하는 키

사용 예시

// Use Cookie instead of WCSession
add_filter( 'wcml_user_store_strategy', function ( $strategy, $key ) {
	return 'cookie';
}, 10, 2 );

wcml_custom_prices_fields_labels, wcml_is_cache_enabled_for_switching_currency, wcml_geolocation_get_user_country, wcml_rounded_price, wcml_currencies_without_cents, wcml_product_custom_prices, wcml_custom_prices_strings, wcml_switch_currency, wcml_custom_prices_fields, wcml_multi_currency_ajax_actions

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