我需要显示:
第一个div中的前三个帖子来自wordpress,
第二个div中的第二个帖子来自wordpress和
来自wordpress的第三个div中的第三个帖子。
我该怎么做?
div 1
--1st post
--2nd tpost
--3rd post
div 2
--4th post
--5th post
--6th post
div 3
--7th post
--8th post
--9th post
答案 0 :(得分:3)
答案 1 :(得分:1)
希望代码能为您服务。
<?php
$i=0;
if (have_posts() ) : while ( have_posts() ) : the_post();
if($i==0)
{
?>
<div><!--open div-->
<?php
}
?>
<h1><?php the_title(); ?></h1>
<p><?php the_content(); ?></p>
<
$i++;
if($i==3)
{
$i=0;
?>
</div><!--closing div -->
<?php
}
endwhile; endif;
?>