希望有人能帮我。
这是我的代码:
function swh_woocommerce_store_credit_shortcode() {
$store_credits = swh_woocommerce_get_store_credits();
echo "<span style= \'display: inline;\'>Remaining Credit:</span>";
return wc_price($store_credits);
}
add_shortcode( \'swh_store_credit_total_value\', \'swh_woocommerce_store_credit_shortcode\' );
我试图在同一行中显示echo和return。
i、 e。Remaning Credit: $80
而不是
Remaining Credit:
$80
谢谢!