编辑文件:cb-new-arrivals.php
<?php /** * Homepage "New Arrivals" partial — latest products in a 4-col card grid. * * @package ClothB2B_Child */ if ( ! defined( 'ABSPATH' ) ) { exit; } $products = function_exists( 'clothb2b_get_new_arrivals' ) ? clothb2b_get_new_arrivals() : array(); ?> <section class="cb-section cb-section--warm"> <div class="cb-container"> <div class="cb-section-head"> <span class="cb-eyebrow"><?php esc_html_e( 'Just In', 'clothb2b' ); ?></span> <h2 class="cb-section-head__title"><?php esc_html_e( 'New Arrivals', 'clothb2b' ); ?></h2> </div> <?php if ( $products ) : ?> <div class="cb-product-grid"> <?php foreach ( $products as $product ) { get_template_part( 'template-parts/home/cb', 'product-card', array( 'product' => $product ) ); } ?> </div> <?php else : ?> <p class="cb-empty"><?php esc_html_e( 'New arrivals coming soon.', 'clothb2b' ); ?></p> <?php endif; ?> </div> </section>
保存
返回