WordPress自定义主题,为什么我的内容没有显示在页面上

时间:2016-12-07 12:02:50

标签: php wordpress

我的页面上没有显示任何内容,除了页眉和页脚我觉得它与我布置我的方式有关,但我不知道。

index.php和page.php

{{1}}

1 个答案:

答案 0 :(得分:2)

您忘记了while声明。

以下是您的代码的外观:

<?php get_header(); ?>
<?php if( have_posts() ) : while ( have_posts() ) :  the_post(); ?>
    <?php the_content(); ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>