我可以在此Wordpress查询中为div添加ID吗?

时间:2013-06-21 11:09:52

标签: php wordpress

我正在使用这个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-1block-2等等/

1 个答案:

答案 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>';
?>