0

我正在使用这个 PHP 片段将每 12 个 Wordpress 帖子包装在一个 div 中。

<?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-blockdiv?例如block-1,,block-2等/

4

1 回答 1

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>';
?>
于 2013-06-21T11:13:02.197 回答