<section class="character__section">
<h2>
ЧИСТЫЕ ЦВЕТА
</h2>
<span>(новый кирпич)</span>
<div class="colorbrick__block">
<?php $args = array( 'post_type' => 'projects', 'posts_per_page' => 99,);
$loop = new WP_Query( $args ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div class="colorbrick__block-item">
<img src="<?php the_field('main__image'); ?>" alt="">
<h2><?php the_title(); ?></h2>
<p>
<span>В ОТДЕЛЬНЫХ ПЛИТКАХ</span>
<span>В МОНТАЖНЫХ ПЛИТКАХ</span>
</p>
</div>
<?php endwhile; ?>
</div>
</section>