编辑文件:cb-about.php
<?php /** * Homepage "Company Introduction" partial — video + text split. * Video is admin-editable (Customizer), text is Polylang-translated. * * @package ClothB2B_Child */ if ( ! defined( 'ABSPATH' ) ) { exit; } ?> <section class="cb-section"> <div class="cb-container cb-about__inner"> <div class="cb-about__media"> <?php $cb_about_video_html = function_exists( 'clothb2b_about_video_html' ) ? clothb2b_about_video_html() : ''; if ( $cb_about_video_html ) { echo $cb_about_video_html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped — core-sanitized, see clothb2b_about_video_html() } else { ?> <img class="cb-about__poster" src="<?php echo esc_url( get_stylesheet_directory_uri() . '/assets/images/about-poster.svg' ); ?>" alt="" aria-hidden="true"> <?php } ?> </div> <div class="cb-about__content"> <span class="cb-eyebrow"><?php esc_html_e( 'Who We Are', 'clothb2b' ); ?></span> <h2 class="cb-about__title"><?php echo esc_html( clothb2b_t( 'Company Introduction' ) ); ?></h2> <div class="cb-about__text"> <?php echo wpautop( esc_html( clothb2b_t( 'Yinbo is a clothing manufacturer focused on cost-effective wholesale production. With years of B2B experience, we deliver quality garments across a wide range of fittings and fabrics — built for partners who need reliable supply at scale.' ) ) ); ?> </div> <a class="cb-btn cb-btn--solid" href="<?php echo esc_url( clothb2b_inquiry_page_url() ); ?>"> <?php echo esc_html( clothb2b_t( 'Inquire Now' ) ); ?> </a> </div> </div> </section>
保存
返回