2020-11-28 17:15:17 +03:00

54 lines
2.6 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="places <?php
if( is_front_page()){
echo 'places_home';
}else if (is_page(24)){
echo 'wave wave-no-top';
}
?>">
<div class="places-layout">
<h2>Залы для праздника</h2>
<div class="owl-carousel places-slider container">
<!-- Выводим все комнаты -->
<?php
$posts = get_posts( array(
'category' => 0,
'orderby' => 'date',
'order' => 'DESC',
'include' => array(),
'exclude' => array(),
'meta_key' => '',
'meta_value' =>'',
'post_type' => 'armanty_rooms',
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
) );
foreach( $posts as $post ){
setup_postdata($post);?>
<div class="places-item" style="background: url(<?php the_post_thumbnail_url()?>) center no-repeat; background-size: cover">
<div class="places-item__layout"></div>
<div class="places-text">
<h3><?php the_title();?></h3>
<span><?php the_content()?></span>
<ul class="places-text__mainmenu">
<li><img src="<?php echo get_template_directory_uri() ?>/assets/img/icons/zone.svg" alt="zone"><img src="<?php echo get_template_directory_uri() ?>/assets/img/icons/zoneW.svg" alt="zone" class="icon-white"><span>Вмещает до <?php the_field('armanty_room_capacity')?> человек</span></li>
<li><img src="<?php echo get_template_directory_uri() ?>/assets/img/icons/rocket.svg" alt="zone"><img src="<?php echo get_template_directory_uri() ?>/assets/img/icons/rocketW.svg" alt="zone" class="icon-white"><span>В вашем распоряжении:</span><?php
the_field('armanty_room_adding');
?></li>
<li class="list-price"><img src="<?php echo get_template_directory_uri() ?>/assets/img/icons/price.svg" alt="zone"><img src="<?php echo get_template_directory_uri() ?>/assets/img/icons/priceW.svg" alt="zone" class="icon-white"><span>Стоимость аренды <?php the_field('armanty_room_price')?> ₽/час</span></li>
</ul>
<a href="<?php echo get_page_link(33) ?>"><button class="btn btn-danger btn-round">Галерея</button></a>
</div>
<div class="places-img">
<img src="<?php the_post_thumbnail_url() ?>" alt="place">
<p><span>1</span> из <span>3</span></p>
</div>
</div>
<?php }
?>
</div>
</div>
</div>