编辑page-new.php在最最最前面加上
<?php
/*
Template Name: 留言板
*/
?>
再进入后台编辑页面,就能看到有一个留言板选项了。
需要引入自定义文件的话:
这些为 top 和 bottom 准备的头部/尾部 应该分别命名为 header-top.php 和 footer-bottom.php 。
<?php
get_header( 'top' );
get_footer( 'bottom' );
?>
如果主题没有 header.php 文件,就会引入默认文件 wp-includes/theme-compat/header.php 。
相关函数
get_footer(), get_sidebar(), get_template_part(), get_search_form(),comments_template()