嗨,我用下面的代码列出了特定类别的帖子。
<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 \' \'; the_title(); ?></h2>
</div>
<div class="popcontent">
<?php the_excerpt();?>
</div>
</article>
<?php endwhile; ?>
<?php endif; ?>
它工作得很好。但现在,当我点击摘录阅读更多链接时,这篇文章显示在一个无序的模板中。我需要像子页面一样显示它们。我有一个子页面模板文件。如何使用该文件显示单个帖子??