<?php if( get_field('enable_sidebar') ): ?>
<?php // do something ?>
<?php endif; ?>
<div class="promoheaderz">
<div class='container'>
<?php while ( have_rows('headerblock') ) : the_row(); ?>
<div class="row" style="background-image: url(<?php echo get_sub_field('background_header')['url']; ?>);">
<div class='discount_text dis col-md-4'>
<?php the_sub_field('Text_left'); ?>
</div>
<div class='discount_img col-md-4'>
<?php $img = get_sub_field('Product_image'); ?>
<img src="<?php echo $img['url']; ?>" alt="<?php echo $img['alt']; ?>">
</div>
<div class='discount_text col-md-4 model'>
<?php the_sub_field('Text_right'); ?>
</div>
</div>
<?php endwhile; ?>
</div>
</div>
<span class="meta-viewer"><i class="fa fa-eye" aria-hidden="true"></i><?php echo getPostViews(get_the_ID()); ?></span>
<?php
include "menu.html";
?>
if ( ! is_single() ) {
// код будет выполнен только если это одна запись и ее тип не страница или аттачмент
}
if ( ! is_singular( 'post' ) ) {
// код будет выполнен везде кроме single типа post
}