如何在自定义模板中显示单个帖子

时间:2013-11-14 作者:Zammuuz

嗨,我用下面的代码列出了特定类别的帖子。

<div class="wrapred">
                    <?php if ( have_posts() ) : 

                        ?>
                    <?php query_posts(\'category_name=services&showposts=5\'); ?>
        <?php while ( have_posts() ) : the_post(); ?>


         <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

             <div class="popthumb"><h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail(); ?></a><?php echo \'&nbsp;&nbsp;\'; the_title(); ?></h2>

 </div>

 <div class="popcontent">

  <?php the_excerpt();?>
    </div>

                    </article>
        <?php endwhile; ?>
                <?php endif; ?>

它工作得很好。但现在,当我点击摘录阅读更多链接时,这篇文章显示在一个无序的模板中。我需要像子页面一样显示它们。我有一个子页面模板文件。如何使用该文件显示单个帖子??

1 个回复
最合适的回答,由SO网友:eskimo 整理而成

在大多数模板中,文件single.php 用于显示单个立柱。因此,您可以使用中的子页面模板文件中的代码single.php 设置单个帖子的样式。

结束

相关推荐

Show posts image attachments

我正在为我的照片博客创建一个归档页面。我的帖子有一个或多个图片。我想在一个页面中显示所有附件缩略图。使用特色图像(the\\u post\\u缩略图)仅显示1个缩略图,我想显示所有附加的图像缩略图。<?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php $thumbnails = get_posts(\'numberposts=30\'); foreach ($