首页    >    中文手册    >   常用函数-get_header()

常用函数-get_header()

说明

该函数从当前主题文件夹中包含header.php模板文件。如果指定名称,那么函数将包含一个特殊的头部文件header-special.php。如果主题中没有header.php文件,那么函数会包含默认主题wp-content/themes/default/header.php的头部文件。

用法

<?php get_header( $name ); ?>

参数

$name

(字符串)(可选)对header-name.php的调用

默认值:None

示例

包含非默认头部文件

<?php
get_header('myheader');
?>

简单的404页面

下面是一个为“HTTP 404: Not Found”错误(在主题文件中为404.php)而制作的简单模板。

<?php get_header(); ?>
<h2>Error 404 – Not Found</h2>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

多个头部

不同页面的不同头部信息

<?php
if ( is_home() ) :
get_header('home');
elseif ( is_404() ) :
get_header('404');
else :
get_header();
endif;
?>

注释

  • name参数引入于WP 2.7

历史记录

  • 始见于1.5.0版本

源文件

get_header()位于wp-includes/general-template.php中。

相关资源

get_header, get_sidebar, get_search_form, comments_template, get_footer()

分类:中文手册

* 版权声明:作者WordPress啦! 转载请注明出处。