Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




load_template [ WordPress 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.
Defined at:



Require the template file with WordPress environment.

The globals are set up for the template file to ensure that the WordPress environment is available from within the function. The query variables are also available.

Source


<?php
function load_template$_template_file$require_once true ) {
    global 
$posts$post$wp_did_header$wp_query$wp_rewrite$wpdb$wp_version$wp$id$comment$user_ID;

    if ( 
is_array$wp_query->query_vars ) )
        
extract$wp_query->query_varsEXTR_SKIP );

    if ( 
$require_once )
        require_once( 
$_template_file );
    else
        require( 
$_template_file );
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics