首页 > 解决方案 > 在 WooCommerce 中按产品 ID 显示带有简码的产品价格

问题描述

我正在尝试创建一个简码来使用它的 ID 显示 woocommerce 产品的价格

我正在使用这段代码:

/** 
 * Shortcode WooCommerce Product Price. 
 * 
 */ 
function cl_woo_product_price_shortcode( $atts ) { 
     
    $atts = shortcode_atts( array( 
        'id' => null 
    ), $atts, 'cl_product_price' ); 
  
    if ( empty( $atts[ 'id' ] ) ) { 
        return ''; 
    } 
  
    $product = wc_get_product( $atts['id'] ); 
  
    if ( ! $product ) { 
        return ''; 
    } 
  
    return $product->get_price(); 
}

但它没有在开头显示 $ 符号,我还想添加一些 CSS。

你可以帮帮我吗?太感谢了!

标签: wordpresswoocommerceshortcodepricewordpress-shortcode

解决方案


推荐阅读