我想查詢要顯示在WordPress網站主頁上的帖子圖片。將div加到循環中的每一行
我想最後的結果看起來像這樣 -
我可以得到跨度來顯示正確,但我不知道怎麼引導的「行」類添加到每一行。
這裏是我迄今爲止 -
任何幫助表示讚賞。
謝謝!
$args = array('post_type' => 'video', 'posts_per_page' => 10,);
$the_query = new WP_Query($args);
echo '<section id="our-work">';
if ($the_query->have_posts()) : while ($the_query->have_posts()) : $the_query->the_post();
$counter += 1;
if($counter == 4 || $counter == 5 || $counter == 9 || $counter == 10) :
echo '<div class="span6">';
the_post_thumbnail();;
echo '</div>';
else:
echo '<div class="span4">';
the_post_thumbnail();
echo '</div>';
endif;
endwhile; endif;
echo '</section>';
不是沒有,但我真的希望PHP沒有維護的伎倆VB -esque語法。可讀性 - ; –