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