Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: page_template_hierarchy

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1450  * @return string[] The template hierarchy.
1451  */
1452 function get_template_hierarchy( $slug, $is_custom = false, $template_prefix = '' ) {
1453      if ( 'index' === $slug ) {
1454           /** This filter is documented in wp-includes/template.php */
1455           return apply_filters( 'index_template_hierarchy', array( 'index' ) );
1456      }
1457      if ( $is_custom ) {
1458           /** This filter is documented in wp-includes/template.php */
1459           return apply_filters( 'page_template_hierarchy', array( 'page', 'singular', 'index' ) );
1460      }
1461      if ( 'front-page' === $slug ) {
1462           /** This filter is documented in wp-includes/template.php */
1463           return apply_filters( 'frontpage_template_hierarchy', array( 'front-page', 'home', 'index' ) );
1464      }
1465
1466      $matches = array();
1467
1468      $template_hierarchy = array( $slug );