繁体   English   中英

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

[英]WordPress custom theme, Why is my content not showing on page

除页眉和页脚之外,我的页面上没有显示其他内容,我认为这与我布局我的方式有关,但我并不十分了解。

index.php和page.php

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

你忘了while声明。

这是代码的外观:

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM