编辑文件:cb-product-card.php
<?php /** * Product card partial — image-forward card used by the New Arrivals grid. * * Passed via get_template_part( 'template-parts/home/cb', 'product-card', * array( 'product' => $product ) ). * * @package ClothB2B_Child */ if ( ! defined( 'ABSPATH' ) ) { exit; } $product = isset( $args['product'] ) ? $args['product'] : null; if ( ! $product ) { return; } $image_id = $product->get_image_id(); $image = $image_id ? wp_get_attachment_image_url( $image_id, 'large' ) : ''; if ( ! $image && function_exists( 'clothb2b_product_image_url' ) ) { $image = clothb2b_product_image_url( $product ); } if ( ! $image ) { $image = get_stylesheet_directory_uri() . '/assets/images/new-placeholder.svg'; } ?> <a class="cb-product-card" href="<?php echo esc_url( $product->get_permalink() ); ?>"> <span class="cb-product-card__media"> <img class="cb-product-card__img" src="<?php echo esc_url( $image ); ?>" alt="<?php echo esc_attr( wp_strip_all_tags( $product->get_name() ) ); ?>" loading="lazy"> </span> <span class="cb-product-card__body"> <span class="cb-product-card__title"><?php echo esc_html( $product->get_name() ); ?></span> <span class="cb-btn cb-btn--solid cb-btn--sm cb-product-card__inquire"><?php echo esc_html( clothb2b_t( 'Inquire' ) ); ?></span> </span> </a>
保存
返回