我已经在我的“索引”中放置了以下博客循环。php文件:
<?php
if ( have_posts() ):
while( have_posts() ): the_post();
?>
<h3><?php the_title(); ?></h3>
<p><?php the_content(); ?></p>
<small>This entry was posted on: <?php the_date(\'l, jS F Y\'); ?> at <?php the_time(\'g:i a\'); ?> and is filed under <?php the_category(); ?></small>
<?php
endwhile;
endif;
?>
在我的主页上,上面的代码没有调用任何博客帖子,因为我已经为我的博客指定了一个“博客”页面。也就是说
<small>This entry was posted on: <?php the_date(\'l, jS F Y\'); ?> at <?php the_time(\'g:i a\'); ?> and is filed under <?php the_category(); ?></small>
出现在我的主页和其他页面上。我意识到这是因为我把它硬编码到了我的索引中。php,但我如何删除它。如果我只是从代码中删除它,它就不会出现在我指定的博客页面上。
有什么建议吗?