如果产品价格大于8美元,我试图制作一个打印“免费送货”的wordpress短代码,如果没有返回空白(不打印任何内容)。
function shortcode_FreeShipping( $product ) {
if( $product->get_price() > 8 ) {
return __( 'Free Shipping', 'woocommerce' );
}
else {
return __( '', 'woocommerce' );
}
}
add_shortcode('freeshipping', 'shortcode_FreeShipping');
在产品页面上插入短代码[freeshipping]
时,页面无法加载。
可能出现什么问题?
答案 0 :(得分:0)
在正确调用$product
(WC_Product
对象实例)的地方尝试此操作:
function shortcode_freeshipping( $atts ) {
// Only on single product pages
if( ! is_product() ) return;
// Shortcode attributes
$atts = shortcode_atts( array(
'price' => 8 // HERE you set your default price
), $atts, 'freeshipping' );
global $product;
if( ! is_object($product) )
$product = wc_get_product( get_the_id() );
if( $product->get_price() > $atts['price'] ) {
return __( 'Free Shipping', 'woocommerce' );
} else {
return __( '', 'woocommerce' );
}
}
add_shortcode('freeshipping', 'shortcode_freeshipping');
代码放在活动子主题(或活动主题)的function.php文件中。经过测试和工作。
USAGE - 2种可能性:
1)使用默认定义价格:
[freeshipping]
2)使用自定义价格(使用 price
参数):
[freeshipping price="10"]