gpt4 book ai didi

wordpress - 我将如何在本地货币前端(WordPress 和 woocommerce)显示 woocommerce 价格

转载 作者:行者123 更新时间:2023-12-03 08:25:15 25 4
gpt4 key购买 nike

我将如何以我的本地货币显示 woocommerce 价格 ( 0 = ০. 1=১. 2=২. 3= ৩. 4=৪. 5=৫. 6=৬. 7= ৭. 8=৮,等)BDT 在没有任何警告的情况下使用函数我正在使用带有 woocommerce 的 WordPress cms

最佳答案

你应该为此使用过滤器。通常显示价格的过滤器是wc_price,所以你可以使用这个过滤器,例如:

add_filter( 'wc_price', 'replace_digits', 99, 4);
function replace_digits( $return, $price, $args, $unformatted_price ){

$price_string = (string)$unformatted_price;
$price_string = str_replace('1', 'A', $price_string);
$price_string = str_replace('2', 'B', $price_string);
$price_string = str_replace('3', 'C', $price_string);
$price_string = str_replace('4', 'D', $price_string);
$price_string = str_replace('5', 'E', $price_string);
$price_string = str_replace('6', 'F', $price_string);
$price_string = str_replace('7', 'G', $price_string);
$price_string = str_replace('8', 'H', $price_string);
$price_string = str_replace('9', 'I', $price_string);
$price_string = str_replace('9', 'J', $price_string);

return $price_string;
}

关于wordpress - 我将如何在本地货币前端(WordPress 和 woocommerce)显示 woocommerce 价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58601456/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com