编辑文件:inquiry.php
<?php /** * Template Name: B2B Inquiry * Auto-applied to the 'b2b-entrance' page via template_include (functions.php). * * Two-column layout: left = inquiry benefits + contact, right = the self-built * inquiry form (rendered via its shortcode, so the ?product_id / ?product_name * prefill and the admin-post handler all keep working untouched). Owns the full * layout; DB page content is ignored. * * @package ClothB2B_Child */ if ( ! defined( 'ABSPATH' ) ) { exit; } get_header(); ?> <main id="primary" class="site-main"> <section class="cb-page-banner"> <div class="cb-container"> <span class="cb-eyebrow"><?php esc_html_e( 'Get In Touch', 'clothb2b' ); ?></span> <h1 class="cb-page-banner__title"><?php esc_html_e( 'Start Your Wholesale Inquiry', 'clothb2b' ); ?></h1> <p class="cb-page-banner__desc"><?php esc_html_e( 'Tell us what you need and we will reply by email within 24 hours.', 'clothb2b' ); ?></p> </div> </section> <section class="cb-section"> <div class="cb-container cb-inquiry-layout"> <div class="cb-inquiry-info"> <h2><?php esc_html_e( 'Why inquire with yinbo?', 'clothb2b' ); ?></h2> <ul> <li><?php esc_html_e( 'Detailed quote within 24 hours', 'clothb2b' ); ?></li> <li><?php esc_html_e( 'Flexible MOQ for growing brands', 'clothb2b' ); ?></li> <li><?php esc_html_e( 'Full OEM / ODM with your label', 'clothb2b' ); ?></li> <li><?php esc_html_e( 'Sampling before bulk production', 'clothb2b' ); ?></li> <li><?php esc_html_e( 'Global shipping with documentation', 'clothb2b' ); ?></li> </ul> <?php $email = apply_filters( 'clothb2b_contact_email', get_option( 'admin_email' ) ); if ( $email ) : ?> <p class="cb-inquiry-contact"> <?php esc_html_e( 'Prefer email?', 'clothb2b' ); ?> <a href="mailto:<?php echo esc_attr( $email ); ?>"><?php echo esc_html( $email ); ?></a> </p> <?php endif; ?> </div> <div class="cb-inquiry-form-wrap"> <?php // The self-built inquiry form shortcode — reads ?product_id / ?product_name // from the URL and submits to admin-post.php. Handler is untouched. echo do_shortcode( '[clothb2b_inquiry_form]' ); ?> </div> </div> </section> </main><!-- #primary --> <?php get_footer();
保存
返回