Answer the question
In order to leave comments, you need to log in
Loop specific post_type records based on custom_fields?
Good day. There is an output of records by a simple cycle. This is now a conditional output of the latest records of a particular type. It is required to display 3 records, which the admin himself will indicate in custom fields.
<section class="random__section">
<h4 style="width: 100%">Похожие проекты:</h4>
<?php $args = array( 'post_type' => 'projects', 'posts_per_page' => 3); $loop = new WP_Query($args); ?>
<?php while ($loop->have_posts()) : $loop->the_post(); ?>
<a class="col-md-6 col-sm-12 col-lg-3" href="<?php the_permalink(); ?>">
<div>
<img src="<?php the_field('background'); ?>" alt="">
<span class="block__project_title"><?php the_title(); ?></span>
</div>
</a>
<?php endwhile; ?>
</section>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question