Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: {$type}_template

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
741  * @param array $templates An optional list of template candidates
742  * @return string Full path to file.
743  */
744 function get_query_template( $type, $templates = array() ) {
745      $type = preg_replace( '|[^a-z0-9-]+|', '', $type );
746
747      if ( empty( $templates ) )
748           $templates = array("{$type}.php");
749
750      return apply_filters( "{$type}_template", locate_template( $templates ) );
751 }
752
753 /**
754  * Retrieve path of index template in current or parent template.
755  *
756  * @since 3.0.0
757  *
758  * @return string
759  */