我是PHP和wordpress的新手,我想从头开始构建我的主题.
从wordpress仪表板上的阅读设置我已经设置为“您的最新帖子”的首页显示选项,但主页是空白的,没有页眉或页脚,虽然每个其他页面工作正常.
<?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,因此请检查前两个.