Wordpress和the_content()

时间:2010-06-28 10:52:05

标签: wordpress

任何人都知道为什么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>

1 个答案:

答案 0 :(得分:1)

单个.php页面和索引页面中的

the_*()函数只能在循环中使用。

while(have_posts())
{
   ///the_content(); the_title(); the_post(); etc
}

//If I Used here then it would not work!