這是我創建列後的代碼列,我想在3列之後分列。 (我是新來的wp代碼)。我想要在Wordpress foreach循環中有三列
<table>
<tr>
<?php
$posts = get_posts('category=3&numberposts=10');
foreach($posts as $post) { ?>
<td width="150">
<?php if (has_post_thumbnail()) { ?>
<a target="_parent"> <?php the_post_thumbnail(array(200,100)); ?></a>
}?>
<a target="_parent"><?php the_title(); ?></a>
<?php echo get_post_meta(get_the_ID(), 'event_startEvent Start', true); ?>
</td>
<?php } ?>
</tr>
</table>
這很好用,謝謝 –
@ user3759400請標記答案爲接受以關閉您的問題。 – arielnmz