编辑文件:cb-fitting.php
<?php /** * Homepage "Shop by Fitting" partial — pa_fitting grid (6 cards). * * @package ClothB2B_Child */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <section class="cb-section"> <div class="cb-container"> <div class="cb-section-head"> <span class="cb-eyebrow"><?php esc_html_e( 'Find Your Fit', 'clothb2b' ); ?></span> <h2 class="cb-section-head__title"><?php esc_html_e( 'Shop by Fitting', 'clothb2b' ); ?></h2> </div> <div class="cb-fitting-grid"> <?php foreach ( clothb2b_fitting_items() as $item ) : ?> <a class="cb-fit-card" href="<?php echo esc_url( $item['url'] ); ?>"> <span class="cb-fit-card__img" style="background-image:url('<?php echo esc_url( $item['img'] ); ?>');"></span> <span class="cb-fit-card__label"><?php echo esc_html( $item['label'] ); ?></span> </a> <?php endforeach; ?> </div> </div> </section>
保存
返回