WordPress 幻灯片
你好 我需要制作一个 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>
Hello
I need to make a wordpress slideshow.
I need the loop to list posts as
This is the 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>
this is the 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以我猜您的帖子每篇都只包含 1 张图片,并且您想将这些帖子以幻灯片形式列出?如果是这样,你可以这样做(未经测试的代码):
So I guess you have posts each containing only 1 image and you want to list these posts as a slideshow? If so, you could do it like this (untested code):