您好 我需要制作一个wordpress幻灯片。 我需要循环将帖子列为
这是html
<div id="container">
<div id="content">
<div id="slider">
<ul>
<li>
<img src="images/slide01.jpg" alt="Css Template Preview" /></li>
<li>
<img src="images/slide02.jpg" alt="Css Template Preview" /></li>
<li>
<img src="images/slide03.jpg" alt="Css Template Preview" /></li>
</ul>
</div>
</div>
</div>
这是php。
<div id="container">
<div id="content">
<div id="slider">
<?php $query= 'cat=3'; ?>
<?php query_posts($query); ?>
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
</div>
</div>
答案 0 :(得分:1)
所以我猜你的帖子每个只包含1张图片,你想把这些帖子列为幻灯片吗?如果是这样,你可以这样做(未经测试的代码):
<div id="container">
<div id="content">
<div id="slider">
<ul>
<?php
$query= 'cat=3';
query_posts($query);
if(have_posts()) :
while(have_posts()) : the_post();
?>
<li><?php the_content(); ?></li>
<?php
endwhile;
endif;
?>
</ul>
</div>
</div>