page.php没有显示内容

时间:2015-02-23 17:32:42

标签: php html wordpress

我开始开发我的第一个WordPress主题,我遇到问题page.php没有在新创建的页面上显示内容。 以下是index.phppage.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();
?>

1 个答案:

答案 0 :(得分:0)

这根本不是问题......我认为我从pannel创建的每一页都需要来自帖子的内容:)这些都是。抱歉,不方便