get_template_directory() – Retrieves template directory path for the active theme.
You appear to be a bot. Output may be restricted
Description
Retrieves template directory path for the active theme.
Usage
$string = get_template_directory();
Parameters
Returns
string Path to active theme's template directory.
Source
File name: wordpress/wp-includes/theme.php
Lines:
1 to 16 of 16
function get_template_directory() { $template = get_template(); $theme_root = get_theme_root( $template ); $template_dir = "$theme_root/$template"; /** * Filters the active theme directory path. * * @since 1.5.0 * * @param string $template_dir The path of the active theme directory. * @param string $template Directory name of the active theme. * @param string $theme_root Absolute path to the themes directory. */ return apply_filters( 'template_directory', $template_dir, $template, $theme_root ); }