我正在尝试显示普通 wordpress 页面的页面内容;在wordpress中做的最简单的事情对吗?好吧,由于某种原因,在每个页面上都找不到此内容。
我尝试过重新保存永久链接、重新保存每个页面、更新站点、重新安装 WP。
这是检查它的代码:
<?php
if ( have_posts() ) : // This is where it fails
while ( have_posts() ) : the_post();
get_template_part( 'parts/content', 'page' );
endwhile;
else :
get_template_part( 'parts/content', 'missing' );
endif;
?>