ruạṛ
<?php if( !is_front_page() && !is_home() && !is_404()): ?> <div class="bannerheight bg-primary d-flex" style="background-image: url('<?= wp_get_attachment_url( get_post_thumbnail_id( get_the_ID() ) ) ?>'); background-position: center; background-size: cover;"> <div class="container-xxl z-index-1 d-flex justify-content-center align-items-center"> <?php if(get_field('banner_title')): ?> <h1 class="text-center text-white mb-5 h2" style="font-style:italic; font-weight: 900;"><?php echo wp_kses_post(get_field('banner_title')); ?></h1> <?php else: ?> <h1 class="text-center text-white h2" style="font-style:italic; font-weight: 900;"><?php echo get_the_title(); ?></h1> <?php endif; ?> <?php $link = get_field('page_banner_button') ?> <?php if($link): ?> <?php $link_url = $link['url']; $link_title = $link['title']; $link_target = $link['target'] ? $link['target'] : '_self'; ?> <div class="text-center"> <a class="btn brand-outlinebtn mt-7 py-5 px-7" href="<?php echo esc_url($link_url) ?>" target="<?php echo esc_attr($link_target) ?>"><?php echo esc_html($link_title) ?></a> </div> <?php endif; ?> </div> </div> <?php elseif(is_front_page()): ?> <div class="home-banner bg-primary" style="height: 650px;"> <h1 class="home-h1">Fresh! Everyday</h1> <div class="homebuttonpos"> <a class="brand-outlinebtn text-center py-5 px-7" href="/contact/" rel="noreferrer noopener">Need an Electrician URGENTLY?<br> Call <b>0800 277 275</b></a> </div> </div> <?php elseif(is_404()): ?> <div class="bannerheight bg-primary"> <div class="container"> <h1 class="subpages-h1 text-center text-white mb-5 h2" style="font-style:italic; font-weight: 900;">Oops! Page Not Found</h1> </div> </div> <?php else: ?> <div class="bannerheight bg-primary"> <h1 class="subpages-h1 text-center text-white mb-5 h2" style="font-style:italic; font-weight: 900;">Latest Info</h1> </div> <?php endif; ?>
cải xoăn