标签: wordpress function
我想使用add_filter在wordpress中插入一个函数(在functions.hp中)但我希望只有当($ _COOKIE ['country'])返回“DK”时才启用此过滤器(对于Danemark )
提前,谢谢!
if ($_COOKIE['country']) == 'DK' { add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); }