【发布时间】:2013-09-15 21:59:09
【问题描述】:
我在使用 WordPress 在另一个页面上显示属于某个帖子的图像时遇到了一些问题。 我正在寻找的是一个主页,其中列出了某个类别中的所有帖子并显示标题、摘录和一个 “查看示例” 链接。查看示例链接将在 LightBox 中显示属于帖子的所有图像,但在主页上。
到目前为止,我有这个,但现在我有点卡住了。
<?php query_posts('cat=15&order=DSC'); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="col-md-6">
<div class="pakket-block">
<h3><?php the_title(); ?></h3>
<?php the_excerpt(); ?>
<span class="read_more"><a href="<?php the_permalink(); ?>" rel="shadowbox">View examples</a></span>
</div> <!-- /.pakket-block -->
</div> <!-- /.col-md-6 -->
<?php endwhile; endif; ?>
<?php wp_reset_postdata(); // reset the query ?>
【问题讨论】: