47 lines
1.4 KiB
PHP
47 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Single case template.
|
|
*
|
|
* @package Fragrance_Trade
|
|
*/
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
get_header();
|
|
?>
|
|
<main id="primary" class="site-main">
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
<article 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' => home_url( '/cases/' ) ),
|
|
array( 'label' => get_the_title(), 'url' => null ),
|
|
),
|
|
)
|
|
);
|
|
?>
|
|
<?php if ( has_post_thumbnail() ) : ?>
|
|
<div class="mb-4"><?php the_post_thumbnail( 'large', array( 'class' => 'img-fluid rounded' ) ); ?></div>
|
|
<?php endif; ?>
|
|
<header class="mb-4">
|
|
<h1><?php the_title(); ?></h1>
|
|
<?php
|
|
$types = get_the_terms( get_the_ID(), 'case_type' );
|
|
if ( $types && ! is_wp_error( $types ) ) :
|
|
?>
|
|
<p class="case-types"><?php echo esc_html( implode( ', ', wp_list_pluck( $types, 'name' ) ) ); ?></p>
|
|
<?php endif; ?>
|
|
</header>
|
|
<div class="case-content"><?php the_content(); ?></div>
|
|
<a href="<?php echo esc_url( home_url( '/contact/' ) ); ?>" class="btn btn-b2b-primary mt-3"><?php esc_html_e( '咨询同类施工', 'fragrance-trade' ); ?></a>
|
|
</article>
|
|
<?php endwhile; ?>
|
|
</main>
|
|
<?php get_footer(); ?>
|