我的页面上没有显示任何内容,除了页眉和页脚我觉得它与我布置我的方式有关,但我不知道。
index.php和page.php
{{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(); ?>