/
home
/
rekodeb
/
webrodez
/
wp-content
/
themes
/
calmer
/
template-parts
/
banner
/
Upload File
HOME
<?php $is_banner = calmor_opt('archive_banner_toggle', 'show'); $is_breadcrumbs = calmor_opt('archive_banner_breadcrumb', 'show'); $is_banner_title = calmor_opt('is_archive_title', 'show'); $banner_url = calmor_opt('archive_banner_img_upload'); $banner_background_url = CALMOR_IMAGES.'/blog/banner/breadcrumb_shap.png'; if ( $banner_url && !empty($banner_url['url']) ) { $banner_background_url = $banner_url['url']; } if (!class_exists('Redux') ) { $banner_background_url = ''; } if ( $is_banner ) { if ($banner_background_url != '') : ?> <div class="blog_breadcrumbs_area_two parallaxie"> <div class="overlay_bg" data-bg-img="<?php echo esc_url($banner_background_url); ?>"></div> <?php else: ?> <div class="blog_breadcrumbs_area_two banner-with-color"> <?php endif; ?> <div class="container"> <div class="breadcrumb_content text-center"> <?php if (have_posts() && $is_banner_title == 'show') { the_archive_title( '<h1 class="page-title page_title">', '</h1>' ); } if ( $is_breadcrumbs == 'show') { calmor_breadcrumbs(); } ?> </div> </div> </div> <?php }