我正在尝试显示正常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;
?>