在我的Wordpress网站的第一个页面上,我总是可以看到我的帖子,但是当我导航到我的“博客”页面并附上我的博客模板时,我无法在这里显示我的帖子。
我使用wordpress函数在第一页上回显当前页面模板,它正在获取索引。php模板。我的博客页面正在获取博客模板。我已经复制并粘贴了代码
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
<?php the_content(); ?>
<p><?php the_time(\'F j, Y\'); ?> at <?php the_time(\'g:i a\'); ?> | <?php the_category(\', \'); ?> | <?php comments_number(\'No comment\', \'1 comment\', \'% comments\'); ?></p>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?>
<h2>Woops...</h2>
<p>Sorry, no posts we\'re found.</p>
<?php endif; ?>
<p align="center"><?php posts_nav_link(); ?></p>
</div>
但我只得到发表评论的表格。如果我知道我做错了什么,我会认为这是博客。php的代码与index相同。php他们看起来一模一样。。
谢谢