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
671  * </code>
672  *
673  * @since 1.5.0
674  *
675  * @param string $type Filename without extension.
676  * @return string Full path to file.
677  */
678 function get_query_template($type) {
679      $type = preg_replace( '|[^a-z0-9-]+|', '', $type );
680      return apply_filters("{$type}_template", locate_template(array("{$type}.php")));
681 }
682
683 /**
684  * Retrieve path of 404 template in current or parent template.
685  *
686  * @since 1.5.0
687  *
688  * @return string
689  */