1
我創建了一個函數來顯示一些帶有簡碼的產品,但是我遇到的問題是錯誤消息沒有顯示在該頁面上。例如,如果需要某些字段,則僅顯示在購物車/結帳頁面上。在頁面上顯示Woocommerce通知
下面是我的一些代碼:
while ($query->have_posts()) : $query->the_post();
global $product;
?>
<div style="border-bottom:thin dashed black;margin-bottom:15px;">
<h2><?php the_title(); ?> <span><?php echo $product->get_price_html();?></span></h2>
<p><?php the_excerpt();?></p>
<?php global $product;
if($product->is_type('simple')){
woocommerce_simple_add_to_cart();
}
什麼我需要添加到顯示短碼被使用在頁面上的錯誤信息?