2020-11-28 14:21:17 +03:00

71 lines
2.5 KiB
PHP
Raw 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="about-joki">
<h1>О нас</h1>
<div class="about-joki__header container">
<h3 class="active" data-content="about">О нас</h3>
<h3 data-content="feedback">Отзывы</h3>
</div>
<div class="about-joki__body container">
<div class="about-joki__body-item about-joki__body-descr" data-content="about">
<div class="row">
<div class="col-xl-6 col-12 about-content">
<?php the_field('about_left') ?>
</div>
<div class="col-xl-6 col-12 about-content">
<?php the_field('about_right') ?>
</div>
</div>
</div>
<div class="about-joki__body-item about-joki__body-fb" data-content="feedback">
<div class="row justify-content-between">
<?php
$posts = get_posts( array(
'category' => 0,
'orderby' => 'date',
'order' => 'DESC',
'include' => array(),
'exclude' => array(),
'meta_key' => '',
'meta_value' =>'',
'post_type' => 'armanty_feedback',
'posts_per_page' => 99,
'suppress_filters' => true, // подавление работы фильтров изменения SQL запроса
) );
foreach( $posts as $post ){
setup_postdata($post);?>
<div class="col-12 about-feedback__block">
<div>
<div class="about-feedback__title">
<div class="row justify-content-between">
<div class="col-6">
<div class="name"><?php the_field('feedback_name') ?></div>
<div class="date"><?php the_field('feedback_date') ?></div>
</div>
<div class="col-6">
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
<div class="from">
<?php the_field('feedback_from') ?>
</div>
</div>
<div class="col-12">
<?php the_field('feedback_text') ?>
</div>
</div>
</div>
</div>
</div>
<?php }
?>
</div>
</div>
</div>
</div>