我想输出 foreach 语句的结果,但我希望将它们分组到 3 中的 div 中
就像:
<div>image image image</div>
<div>image image image</div>
<div>image image image</div>
到目前为止,这是我的代码:
$args = array( 'numberposts' => 3, 'offset'=> 0, 'category' => 9 );
$myrows = get_posts($args);
foreach($myrows as $row) { ?>
<div>
<?php if ( has_post_thumbnail($row->ID)) {
echo '<a href="' . get_permalink( $row->ID ) . '" title="' . esc_attr($row->post_title ) . '">';
echo get_the_post_thumbnail($row->ID);
echo '</a>';
}?>
</div>
<?php } ?>