File: /www/wwwroot/1.scey.cn/wp-content/themes/Leading/template-parts/archive/banner.php
<?php
$banner_title = get_term_meta($cat, 'banner_title', true);
$banner_img = get_term_meta($cat, 'banner_img', true);
$title_type = get_term_meta($cat, 'title_type', true);
$thiscat = get_category($cat);
$category_description = category_description();
?>
<?php if( $banner_img ){?>
<div class="page-banner" style="background: url(<?php echo $banner_img;?>);background-position: center center;-webkit-background-size: cover;background-size: cover;">
<div class="dark-overlay">
</div>
<div class="page-banner-container">
<div class="page-content"<?php if( $title_type == '2' ){ echo 'style="text-align:center"'; }?>>
<h2><?php if($banner_title){ echo $banner_title; }else{ echo $thiscat ->name; }?></h2>
<?php if($category_description){?>
<p class="text-muted lead">
<?php echo $category_description;?>
</p>
<?php }?>
</div>
</div>
</div>
<?php }else{?>
<div class="list_title">
<p>
<?php single_term_title(); ?>
</p>
</div>
<?php }?>