我对我的blog page-
目前,我有两个测试帖子——“测试博客帖子”和“测试博客帖子Deux”测试博客帖子按应有的方式显示,但是当我添加第二篇帖子(测试博客帖子Deux)时,帖子内容似乎覆盖了旧内容。你可以在文章中看到这一点-第一段以“这是另一篇测试博客文章。这里有更多ipsum…”开头第二个“这是一篇测试博客文章。这里有一些ipsum。”中间没有任何职位、日期等。
有什么想法发生了什么/如何修复吗?
这是我的代码:
<div class="blog-meta">
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<h3>posted by ZOPA on <?php the_time(\'m/d/Y \\a\\t g:i A\') ?> | <?php the_tags(\'tags: \',\' , \',\'<br />\'); ?></h3>
</div><!-- end blog-meta -->
<div class="blog-post">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(\'Read the rest of this entry »\'); ?>
<?php endwhile; ?>
<?php else : ?>
//Something that happens when a post isn’t found.
<?php endif; ?>
</div><!-- end blog-post -->