我试图通过短代码,显示自定义页面上的产品的价格。
我发现这个线程: 如何通过ID号的自定义页面上显示Woocommerce产品的价格?
与此代码:
function so_30165014_price_shortcode_callback( $atts ) {
$atts = shortcode_atts( array(
'id' => null,
), $atts, 'bartag' );
$html = '';
if( intval( $atts['id'] ) > 0 && function_exists( 'wc_get_product' ) ){
$_product = wc_get_product( $atts['id'] );
$html = "price = " . $_product->get_price();
}
return $html;
}
add_shortcode( 'woocommerce_price', 'so_30165014_price_shortcode_callback' );
简码: [woocommerce_price id="99"]
我已经实现了代码,并得到它的工作的唯一的事,现在是不是正在显示的定价权它没有登记逗号。
比如我的影片被显示为价格$13564.34
当它应显示为$13,564.34
它也做同样为$1371.43
当它应显示为$1,371.43