我正在使用这个PHP代码片段在div中包装每12个Wordpress帖子。
<?php
$i = 1;
echo '<div class="row content-block">';
if ( $project->have_posts() ) :
while ( $project->have_posts() ) : $project->the_post();
get_template_part('project', 'content');
if($i % 12 == 0) {echo '</div><div class="row content-block">';}
$i++; endwhile; endif;
echo '</div>';
?>
有什么方法可以将唯一ID应用于row content-block
div?例如block-1
,block-2
等等/
答案 0 :(得分:0)
是(已编辑):
<?php
$i = 1;
$id = 2;
echo '<div class="row content-block" id="block-1">';
if ( $project->have_posts() ) :
while ( $project->have_posts() ) : $project->the_post();
get_template_part('project', 'content');
if($i % 12 == 0) {echo '</div><div class="row content-block" id="block-' .$id .'">'; $id++;}
$i++; endwhile; endif;
echo '</div>';
?>