97 lines
2.4 KiB
PHP
97 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* Template Name: 关于门店
|
|
* About the shop page — intro, environment, video, guarantees.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
?>
|
|
|
|
<main id="primary" class="site-main">
|
|
|
|
<?php
|
|
/* ---- 0. Breadcrumb ---- */
|
|
?>
|
|
<div class="page-content container">
|
|
<?php
|
|
get_template_part(
|
|
'template-parts/breadcrumb',
|
|
null,
|
|
array(
|
|
'items' => array(
|
|
array( 'label' => __( '首页', 'fragrance-trade' ), 'url' => home_url( '/' ) ),
|
|
array( 'label' => __( '关于门店', 'fragrance-trade' ), 'url' => null ),
|
|
),
|
|
)
|
|
);
|
|
?>
|
|
</div>
|
|
|
|
<?php
|
|
/* ---- 1. 门店介绍(页面编辑器内容) ---- */
|
|
while ( have_posts() ) :
|
|
the_post();
|
|
?>
|
|
<section class="b2b-section about-intro">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8 col-xl-7">
|
|
<div class="section-heading text-center mx-auto mb-4">
|
|
<p class="section-eyebrow"><?php esc_html_e( '关于我们', 'fragrance-trade' ); ?></p>
|
|
<h1><?php the_title(); ?></h1>
|
|
</div>
|
|
<div class="about-content"><?php the_content(); ?></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<?php
|
|
endwhile;
|
|
?>
|
|
|
|
<?php
|
|
/* ---- 2. 信任要点 ---- */
|
|
get_template_part( 'template-parts/home/trust' );
|
|
?>
|
|
|
|
<?php
|
|
/* ---- 3. 门店环境 ---- */
|
|
get_template_part( 'template-parts/home/factory' );
|
|
?>
|
|
|
|
<?php
|
|
/* ---- 4. 施工流程视频(如果启用了且有视频) ---- */
|
|
if ( fragrance_trade_show_section( 'b2b_show_video' ) ) :
|
|
get_template_part( 'template-parts/home/video' );
|
|
endif;
|
|
?>
|
|
|
|
<?php
|
|
/* ---- 5. 服务保障 ---- */
|
|
if ( fragrance_trade_show_section( 'b2b_show_documents' ) ) :
|
|
get_template_part( 'template-parts/home/documents' );
|
|
endif;
|
|
?>
|
|
|
|
<?php
|
|
/* ---- 6. CTA ---- */
|
|
?>
|
|
<section class="b2b-section about-cta text-center">
|
|
<div class="container">
|
|
<h2><?php esc_html_e( '先看样板,再决定', 'fragrance-trade' ); ?></h2>
|
|
<p class="section-lead mx-auto"><?php esc_html_e( '欢迎到店查看实物色卡、膜料样板与施工环境,再结合车型和预算确认方案。', 'fragrance-trade' ); ?></p>
|
|
<a href="<?php echo esc_url( home_url( '/contact/' ) ); ?>" class="btn btn-b2b-primary btn-lg mt-3">
|
|
<?php esc_html_e( '联系门店', 'fragrance-trade' ); ?>
|
|
</a>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<?php get_footer(); ?>
|