load_template()
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.
Used By: locate_template()
Hooks from the function
Return
null
. Nothing (null).
Usage
load_template( $_template_file, $load_once, $args );
- $_template_file(string) (required)
- Path to template file.
- $load_once(true|false)
- Whether to require_once or require.
Default: true - $args(array)
- Additional arguments passed to the template.
Default: empty array
Examples
#1 Including a template file in the plugin, with the ability to change it in the theme
Suppose we create a plugin and in it we need to specify the template file that will be used in the theme. Consequently, the template file will be different for different themes and we need to leave the possibility to change the template file in the theme. To do this, we will connect the plugin file, only if it is not defined in the theme:
// return file path if the child or parent theme has such a file $overridden_template = locate_template( 'some-template.php' ); if ( $overridden_template ) { load_template( $overridden_template ); } // file is not found in the theme or child-theme else { // load the file from the 'templates' directory of the plugin load_template( __DIR__ . '/templates/some-template.php' ); }
#2 Send variable (data) to the template file
You can send additional variable with load_template() by passing the third parameter.
$args = [ 'text' => 'Hello Template File', ]; $template = locate_template( 'template.php' ); if( $template ){ load_template( $template, true, $args ); }
In template.php file you can access this variable like this:
echo $args['text']; //> "Hello Template File"
Notes
- Global. Array. $posts
- Global. WP_Post. $post Global post object.
- Global. true|false. $wp_did_header
- Global. WP_Query. $wp_query WordPress Query object.
- Global. WP_Rewrite. $wp_rewrite WordPress rewrite component.
- Global. wpdb. $wpdb WordPress database abstraction object.
- Global. String. $wp_version
- Global. WP. $wp Current WordPress environment instance.
- Global. Int. $id
- Global. WP_Comment. $comment Global comment object.
- Global. Int. $user_ID
Changelog
Since 1.5.0 | Introduced. |
Since 5.5.0 | The $args parameter was added. |