wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
get_template_directory › WordPress Function
Seit1.5.0
Veraltetn/v
› get_template_directory ( Keine Parameter )
| Gibt zurück: |
|
| Definiert in: |
|
| Codex: | |
| Changelog: |
|
Retrieves template directory path for the active theme.
Ähnliche Funktionen: get_template_directory_uri, get_template_hierarchy, get_template_part, get_stylesheet_directory, get_temp_dir
Quellcode
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 );
}