任何人都知道为什么the_content()没有显示在我的single.php页面上,而它显示在index.php上?
<div class="block">
<h1><?php the_title(); ?></h1>
<p class="date">
<?php the_date('d F Y'); ?>
</p>
<p>
<?php the_content(); ?>
</p>
</div>
答案 0 :(得分:1)
the_*()
函数只能在循环中使用。
while(have_posts())
{
///the_content(); the_title(); the_post(); etc
}
//If I Used here then it would not work!