如何在WordPress仪表板中更改WooCommerce货币符号?
我无法使用,我将此代码添加到WordPress仪表板中的摘要插件中。
/**
* Change a currency symbol
*/
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'ZK': $currency_symbol = 'ZMW'; break;
}
return $currency_symbol;
}
it's not working I added this code to the snippets plugin in WordPress dashboard.
/**
* Change a currency symbol
*/
add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2);
function change_existing_currency_symbol( $currency_symbol, $currency ) {
switch( $currency ) {
case 'ZK': $currency_symbol = 'ZMW'; break;
}
return $currency_symbol;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请替换为以下代码段。
以下是WooCommerce中可用的货币符号。
Please replace with the below code snippet.
Below are the currency symbols available in WooCommerce.