Definition:
function get_header( $name = null ) {}
Load header template.
Includes the header template for a theme or if a name is specified then a specialised header will be included.
Parameters
- string $name: The name of the specialised header.
Defined actions
- get_header
do_action( 'get_header', $name );
Source code
function get_header( $name = null ) { do_action( 'get_header', $name ); $templates = array(); if ( isset($name) ) $templates[] = "header-{$name}.php";
1404
No comments yet... Be the first to leave a reply!