File: /home/ayxmplky/public_html/wp-content/themes/tactic/template-parts/home/landscape-banner.php
<?php
/**
* Template Part: Горизонтальный баннер с пейзажем
*
* @package tactic
*/
$front_id = (int) get_option( 'page_on_front' );
$ls_id = $front_id ? (int) get_post_meta( $front_id, '_landscape_bg_id', true ) : 0;
$ls_url = $ls_id ? wp_get_attachment_image_url( $ls_id, 'full' ) : '';
?>
<div
class="landscape-banner<?php echo $ls_url ? ' landscape-banner--has-bg' : ''; ?>"
aria-hidden="true"
>
<div class="landscape-banner__overlay"></div>
<div class="landscape-banner__logo">
<?php
$banner_logo_id = (int) get_theme_mod( 'tactic_banner_logo_id', 15 );
$banner_logo_url = $banner_logo_id ? wp_get_attachment_image_url( $banner_logo_id, 'full' ) : '';
if ( $banner_logo_url ) :
?>
<img src="<?php echo esc_url( $banner_logo_url ); ?>" alt="<?php bloginfo( 'name' ); ?>" class="landscape-banner__logo-img">
<?php else : ?>
<span class="landscape-logo-text"><?php bloginfo( 'name' ); ?></span>
<?php endif; ?>
</div>
</div>