Как можно создать фильтр ACF, если у меня есть плагин search & filter pro(можно и без него)? Оставлю код с $wp_query:
<?php
$args = array(
'post_type' => 'standart_projects',
'posts_per_page' => 20
);
$the_query = new WP_Query( $args );
?>
<?php if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="slide">
<a class="project__link" href="<?php echo get_post_permalink($post->ID) ?>">
<img src="<?php the_field('main-photo', $post->ID);?>">
<div class="project__back">
<div class="project__title"><?php the_title();?></div>
<div class="project__price"><?php the_field('price', $post->ID);?> руб</div>
</div>
</a>
</div>
<?php endwhile; else: ?> Nothing here <?php endif; ?>
<?php wp_reset_query(); ?>
</div>