У меня проблема, пожалуйста, кто-нибудь, скажите мне, где проблема в этом коде
<?php $loop = new WP_Query(array( 'post_type' => 'about_us', 'orderby' => 'post_id', 'order' => 'ASC' )); ?>
<?php while($loop -> have_post()) : $loop -> the_post(); ?>
<div class="col-lg-4 col-sm-6 col-xs-12">
<i class="<?php the_field('about_us_icon'); ?>" aria-hidden="true"></i>
<div class="textA">
<h3><?php the_field('about_us_title'); ?></h3>
<p><?php the_field('about_us_text'); ?></p>
</div>
</div>
<?php endwhile; wp_reset_query(); ?>
и спасибо !!