我正在尝试将帖子组织成三列,但无法正常工作。我只想在 3 个不同的列中显示 3 个帖子。
所以
1 | 2 | 3
到目前为止我所拥有的:
<div id="main-wrapper">
<?php
$loop = new WP_Query(array('post_type' => 'camp', 'posts_per_page' => 3));
if ($loop->have_posts()) ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php
$custom = get_post_custom($post->ID);
$screenshot_url = $custom["screenshot_url"][0];
$website_url = $custom["website_url"][0];
?>
<?php the_content(); ?>
<?php endwhile; ?>
</div>
网站是Botkai