我試圖將帖子組織成三列,但我無法使其工作。我只想在3個不同欄目中顯示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
你得到三個職位者居上另一個與上面的代碼? – Dawson 2013-03-01 23:05:12
我還沒有在上面的代碼中添加內容,但是,這就是發生了什麼。 – BMS 2013-03-01 23:06:31