如果没有设计page.php页面模板,则会默认调用index.php模板,示例:

<div class="page-box">
    <?php the_post(); ?>
    <div class="post-item">
        <div class="post-title">
            <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a><h2>
        </div>
        <div class="post-meta">
            <?php the_category('|'); ?>
            <?php the_author(); ?>
            <?php the_time('Y-m-d'); ?>
            <?php edit_post_link('编辑','|', '|'); ?>
        </div>
        <div class="post-content"><?php the_content(); ?></div>
    </div>
    <?php comments_template() ?>
</div>

此模板一旦建立,则页面就会使用page.php页面模板,而不会调用index.php模板
但不同的页面如何调用不同的页面模板?
简单的方法就是新建一个页面,然后建立一个page-页面ID.php或者page-页面别名.php即可实现.