我需要爲我的wordpress循環中的每個第二項添加一個div
。目前我正在使用下面的代碼(哪些工作),但我認爲有一個更好或更乾淨的方式來做到這一點。我將如何更改下面的代碼?任何關於去哪裏看的建議都會很棒,因爲這對我來說似乎很混亂。提前致謝。每隔一個循環顯示div
<?php while (have_posts()) : the_post(); ?>
<?php
$col_select = $data['example_select'];
if ($col_select == '2 Col') {
get_template_part('/templates/article/content', 'standard'); ?>
<?php if($wp_query->current_post == '1') { ?>
</div><div class="row">
<?php } if($wp_query->current_post == '3') { ?>
</div><div class="row">
<?php } if($wp_query->current_post == '5') { ?>
</div><div class="row">
<?php } if($wp_query->current_post == '7') { ?>
</div><div class="row">
<?php } if($wp_query->current_post == '9') { ?>
</div><div class="row">
<?php } ?>
哈哈我只是寫你寫的! –
Brillant。這麼簡單....我會接受,當它讓我傑西卡 – user2966586