Definition:
function load_template( $_template_file, $require_once = true ) {}
Parameters
- string $_template_file: Path to template file.
- bool $require_once: Whether to require_once or require. Default true.
Source code
function load_template( $_template_file, $require_once = true ) {
global $posts, $post, $wp_did_header, $wp_did_template_redirect, $wp_query, $wp_rewrite, $wpdb, $wp_version, $wp, $id, $comment, $user_ID;
if ( is_array( $wp_query->query_vars ) )
extract( $wp_query->query_vars, EXTR_SKIP );
if ( $require_once )
require_once( $_template_file );
else
require( $_template_file );
}
2289

February 12, 2011 

