- CPT: service(服务项目) + case(案例作品集) + case_type 分类 - 页面: 关于门店/常见问题/预约联系 + archive/single 模板 - 首页精简为 hero+trust+service-teaser+case-teaser+cta - 主题激活自动迁移 Customizer 产品数据为 service 文章 - 预约表单: nonce+honeypot+rate-limit, URL 参数预填服务 - 联系页: 门店地址/电话/营业时间/百度地图导航 - Customizer 面板改为门店语境(13 板块) - header CTA 改为预约, helpers 更新为门店口径 - README.md 全面更新为门店多页面架构文档
75 lines
1.9 KiB
PHP
75 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* Template Name: 关于门店
|
|
* About the shop page — intro, environment, video, guarantees.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
get_header();
|
|
?>
|
|
|
|
<main id="primary" class="site-main">
|
|
|
|
<?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(); ?>
|