1 get_header函数

1.1 函数形式与功能

get_header( string $name = null, array $args = array() )

get_header主要用于包含主题的header模板。如果指定了名称,则将包含专门的头部模板。

比如:

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

将加载文件名为header-special.php的模板。

1.2 函数参数

  • $name:string类型(可选),指定的header模板名称,默认值为null;
  • $args:array类型(可选),传递给header模板的附加参数,默认值为array();

1.3 函数返回值

如果模板不存在,返回false;如果模板存在,返回void。

如果主题不包含header.php文件,则将包含默认主题的标题wp-includes/theme-compat/header.php。