我想这可能是一个更复杂的问题,但我会尽量如实回答。以下代码将每个帖子的内容包装在<div>
:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="slide<?php the_ID(); ?>>
// Post content - i.e. your slider image - goes here
</div>
<?php endwhile; ?>
<?php endif; ?>
现在,这里固有的问题是:幻灯片内容在哪里,以及如何将幻灯片图像添加到该内容中?您是否使用自定义帖子类型?您是否使用特色图片?您是否使用自定义post meta?
我们需要更多的信息,以便准确地指定如何使用循环输出特定内容。
EDIT
根据您的评论,此代码将使用特征图像作为滑块图像(并假设您创建了自定义图像大小,
slider-image
, 将文章标题用作滑块标题,将文章摘录用作滑块文本:
EDIT 2
现在在滑块图像周围包括一个post permalink:
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="slide<?php the_ID(); ?>>
<a href="<?php the_permalink(); ?>">
<?php the_post_thumbnail( \'slider-image\' ); ?>
</a>
<h2><?php the_title(); ?></h2>
<?php the_excerpt(); ?>
</div>
<?php endwhile; ?>
<?php endif; ?>
这将为您的示例标记提供合理的近似值。