php – 首页显示(您的最新帖子)空白,其他页面很好

我是PHPwordpress的新手,我想从头开始构建我的主题.

wordpress仪表板上的阅读设置我已经设置为“您的最新帖子”的首页显示选项,但主页是空白的,没有页眉或页脚,虽然每个其他页面工作正常.

这是我的index.PHP代码

<?PHP get_header(); ?>

<?PHP 
    if(have_posts()): 

    while(have_posts()): the_post(); ?>

    <h3><?PHP the_title(); ?></h3>

    <small>Posted on: <?PHP the_time('F j, Y'); ?> at <?PHP the_time('g:i a'); ?>, in <?PHP the_category(); ?></small>

    <p><?PHP the_content(); ?></p>

    <hr>

    <?PHP endwhile; 

    endif;

    ?>

<?PHP get_footer(); ?>

任何人都可以解释为什么会这样吗?

谢谢.

解决方法:

您可能正在加载另一个模板,这是一个空白的fil. wordpress具有在https://developer.wordpress.org/themes/basics/template-hierarchy/#front-page-display中设置的模板层次结构.
对于您的情况,层次结构是front-page.PHP,home.PHP,index.PHP,因此请检查前两个.

相关文章

我们有时候在定制WORDPRESS主题的时候,由于菜单样式的要求我...
很多朋友在做wordpree主题制作的时候会经常遇到一个问题,那...
wordpress后台的模块很多,但并不是每个都经常用到。介绍几段...
从WordPress4.2版本开始,如果我们在MYSQL5.1版本数据中导出...
很多网友会遇到这样一个问题,就是WordPress网站上传图片、附...
对于经常要在文章中出现代码的IT相关博客,安装一个代码高亮...