我需要在我的购物车页面和结帐页面中显示的价格(小计、总计...)之后添加文字提及。
我知道如何在单页和商店页面上做到这一点,但在其他页面上却不知道。我唯一找到的是这段代码,但它不起作用。
add_filter( 'woocommerce_get_price_html', 'custom_price_message' );
function custom_price_message( $price ) {
$text = 'lorem';
return $price . $text;
}