我找到了这段代码:
<?php
$myposts = get_posts('');
foreach($myposts as $post) :
setup_postdata($post);
?>
<div class="post-item">
<div class="post-info">
<h2 class="post-title">
<a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?>
</a>
</h2>
<p class="post-meta">Posted by <?php the_author(); ?></p>
</div>
<div class="post-content">
<?php the_content(); ?>
</div>
</div>
<?php comments_template(); ?>
<?php endforeach; wp_reset_postdata();
?>
这是显示帖子的好方法吗?因为它显示了,但是如果我单击某个帖子,它会再次显示所有帖子但带有评论..是否可以仅显示我单击的主题?
(或者如果你有更好的代码来显示帖子,请写在这里)