Answer the question
In order to leave comments, you need to log in
How to wrap a div every 3 entries?
There is the following record output
<?php
$query = new WP_Query('cat=9');
if( $query->have_posts() ){
while( $query->have_posts() ){ $query->the_post();
?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php
}
wp_reset_postdata();
}
else echo 'Записей нет.';
?>
Answer the question
In order to leave comments, you need to log in
PHP has Modulo and WP_Query has $current_post:
if ( $query->current_post % 3 === 0 ) {
... // тут див
}
$current = $query->current_post + 1;
if ( $current % 3 === 0 ) {
... // тут див
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question