Files
agroexpert/sidebar-left.php

41 lines
1.4 KiB
PHP
Raw Normal View History

2024-03-01 17:47:03 +03:00
<?php if (!is_front_page()) : ?>
<div class="menu-vertical desktop">
<div class="menu-vertical__inner">
<?php get_template_part('partials/category-menu-for-category'); ?>
</div>
</div>
<?php endif; ?>
<?php if (is_active_sidebar('left-sidebar')) : ?>
<?php dynamic_sidebar('left-sidebar'); ?>
<?php endif; ?>
<?php get_template_part('partials/latest-interview-post'); ?>
<?php if (is_front_page()) : ?>
<div class="most-read mobile">
<div class="most-read__inner">
<p class="most-read__title subtitle-20">Самое читаемое</p>
<div class="most-read__links">
<?php get_template_part('partials/most-read-posts'); ?>
</div>
</div>
</div>
<?php $banners = wp_is_mobile() ? get_field('banners_left_sidebar_mobile', 'option') : get_field('banners_left_sidebar', 'option');?>
<?if ($banners): ?>
<? foreach ($banners ?? [] as $banner) : ?>
<? if (empty($banner['image_banner']) && empty($banner['link'])) : ?>
<? continue; ?>
<? endif; ?>
<div class="banner-left desktop">
<a href="<?= empty($banner['link']) ? home_url() : $banner['link'] ?>">
<img src="<?= $banner['image_banner']['url'] ?>" alt="">
</a>
</div>
<? endforeach; ?>
<? endif;?>
<?php endif; ?>