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 |
|---|---|
| 1577 | * @param string $template_prefix Optional. The template prefix for the created template. |
| 1578 | * Used to extract the main template type, e.g. |
| 1579 | * in `taxonomy-books` the `taxonomy` is extracted. |
| 1580 | * Default empty string. |
| 1581 | * @return string[] The template hierarchy. |
| 1582 | */ |
| 1583 | function get_template_hierarchy( $slug, $is_custom = false, $template_prefix = '' ) { |
| 1584 | if ( 'index' === $slug ) { |
| 1585 | /** This filter is documented in wp-includes/template.php */ |
| 1586 | return apply_filters( 'index_template_hierarchy', array( 'index' ) ); |
| 1587 | } |
| 1588 | if ( $is_custom ) { |
| 1589 | /** This filter is documented in wp-includes/template.php */ |
| 1590 | return apply_filters( 'page_template_hierarchy', array( 'page', 'singular', 'index' ) ); |
| 1591 | } |
| 1592 | if ( 'front-page' === $slug ) { |
| 1593 | /** This filter is documented in wp-includes/template.php */ |
| 1594 | return apply_filters( 'frontpage_template_hierarchy', array( 'front-page', 'home', 'index' ) ); |
| 1595 | } |