我正在尝试创建一个 WooCommerce 短代码来显示带有一些信息的一种产品。
每天都会有一个具有属性DAGAANBIEDING和价值的新产品JA或NEE。
我只想展示该产品的价值JA。
短代码正在运行,但没有显示任何内容。
这就是我所拥有的:
//custom shortcodes
if( !function_exists('product_snippet') ) {
function product_snippet( $atts ) {
// Attributes
extract( shortcode_atts(
array(
'taxonomy' => 'pa_dagaanbieding', // You will use $id to get the value of this attribute
'terms' => 'Ja' // You will use $snippet to get the value of this attribute
),
$atts
));
// Get an instance of the product object
$product = wc_get_product( $id );
// Displays go here
return '<div class="row">
<div class="col-md-6"><h3>'.$product->get_title().'</h3>'.$product->get_image().'<br><br><a href="'.get_permalink( $id ).'"><button type="submit" class="single_add_to_cart_button button alt">Bekijk aanbieding</button></a></div>
<div class="col-md-6">'.$product->get_regular_price().' '.$product->get_regular_price().'</div>
</div>';
}
add_shortcode( 'product_snippet', 'product_snippet' );
}
但它不显示信息。
UYOU