在两者中index.php
和page.php
, 您的电话:
<?php get_template_part( \'content\', \'page\' ); ?>
你的主题有
content-page.php
或
content.php
文件?
(注意:您可能应该使用content.php
文件位于index.php
, 和电话get_template_part( \'content\' )
.
在里面page.php
, 您没有正确调用循环。您有:
<?php the_post(); ?>
。。。而不是:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
这可能会也可能不会导致问题。