我开始开发我的第一个WordPress主题,我遇到问题page.php
没有在新创建的页面上显示内容。
以下是index.php
和page.php
。
的index.php:
<?php
get_header();
if(have_posts()):
while(have_posts()): the_post(); ?>
<article class='post'>
<h2><a href="<?php the_permalink();?>"><?php the_title();?></a></h2>
<?php the_content()?>
</article>
<?php endwhile;
else:
echo '<p>No content found</p>';
endif;
get_footer();
?>
和page.php:
<?php
get_header();
if(have_posts()):
while(have_posts()): the_post(); ?>
<article class='post page'>
<h2><?php the_title();?></h2>
<?php the_content()?>
</article>
<?php endwhile;
else:
echo '<p>No content found</p>';
endif;
get_footer();
?>
答案 0 :(得分:0)
这根本不是问题......我认为我从pannel创建的每一页都需要来自帖子的内容:)这些都是。抱歉,不方便