新增新品提醒,把下面的程式碼新增到主題的 functions.php 檔案的底部,修改之前建議先備份原始檔案,若出現錯誤請先刪除此程式碼。
add_action( 'woocommerce_before_shop_loop_item_title', 'wxd_new_badge_shop_page', 3 );
function wxd_new_badge_shop_page() {
global $product;
$newness_days = 30;
$created = strtotime( $product->get_date_created() );
if ( ( time() - ( 60 * 60 * 24 * $newness_days ) ) < $created ) {
echo '<span class="itsnew onsale">' . esc_html__( ' 新品!', 'woocommerce' ) . '</span>';
}
}
自己修改上面新品字樣成 NEW 。
下面模板的問題是你主題樣式,後臺安裝個 elementor 然後頁面編輯,選擇個全寬頁面就行。