WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 16 | * "special". |
| 17 | * |
| 18 | * @uses locate_template() |
| 19 | * @since 1.5.0 |
| 20 | * @uses do_action() Calls 'get_header' action. |
| 21 | * |
| 22 | * @param string $name The name of the specialised header. |
| 23 | */ |
| 24 | function get_header( $name = null ) { |
| 25 | do_action( 'get_header', $name ); |
| 26 | |
| 27 | $templates = array(); |
| 28 | $name = (string) $name; |
| 29 | if ( '' !== $name ) |
| 30 | $templates[] = "header-{$name}.php"; |
| 31 | |
| 32 | $templates[] = 'header.php'; |
| 33 | |
| 34 | // Backward compat code will be removed in a future release |