get_header()函数用于获取加载头部模板,使用它我们也可以加载自定义的头部模板。以下是青锋建站给大家分享的get_header()加载头部模板使用方法。
get_header函数的使用
<?php get_header( $name ); ?>
很简单,从上面的函数声明中我们也能看出,该函数只接受一个变量作为参数。
参数解释
$name ,从上面的函数声明中我们可以看出,$name是一个字符串型变量,用来调用header的别名模板,
比如 $name = “php”;
也就是我们这样
这将会调用 header-php.php 文件作为头部文件的调用。
很简单,从上面的函数声明中我们也能看出,该函数只接受一个变量作为参数。
参数解释
$name ,从上面的函数声明中我们可以看出,$name是一个字符串型变量,用来调用header的别名模板,
比如 $name = “php”;
也就是我们这样
<?php
$name = “php”
get_header( $name );
?>
$name = “php”
get_header( $name );
?>
使用 get_header调用自定义头部
为不同的页面显示自定义头部
<?php
if ( is_home() ) :
get_header( 'home' );
elseif ( is_404() ) :
get_header( '404' );
else :
get_header();
endif;
?>
这些为 home 和 404 准备的头部应该分别命名为 header-home.php 和 header-404.php 。
if ( is_home() ) :
get_header( 'home' );
elseif ( is_404() ) :
get_header( '404' );
else :
get_header();
endif;
?>
这些为 home 和 404 准备的头部应该分别命名为 header-home.php 和 header-404.php 。
get_header函数声明
get_header 函数,声明的位置,是在 wp=include/general-template.php 文件。函数原形如下:
function get_header( $name = null ) {
do_action( 'get_header', $name );
$templates = array();
if ( isset($name) )
$templates[] = "header-{$name}.php";
$templates[] = 'header.php';
// Backward compat code will be removed in a future release
if ('' == locate_template($templates, true))
load_template( ABSPATH . WPINC . '/theme-compat/header.php');
}
do_action( 'get_header', $name );
$templates = array();
if ( isset($name) )
$templates[] = "header-{$name}.php";
$templates[] = 'header.php';
// Backward compat code will be removed in a future release
if ('' == locate_template($templates, true))
load_template( ABSPATH . WPINC . '/theme-compat/header.php');
}
以上是青锋建站给大家分享的get_header()加载头部模板使用方法。青锋建站,提供专业的高品质网站制作服务,包括wordpress网站建设服务,SEO,网络营销,PHP开发,网站建设知名品牌,全国接单,专业做优化型网站,为企业构建营销平台。
转载请注明来源网址:青锋建站-http://www.sjzphp.com/kaifazhe/wordpress/get_header_1466.html