функция
since 1.5.0
get_template_directory()
Проверено на WordPress 6.9, обновлено Источник: WordPress Developer Resources.
Сигнатура
get_template_directory(): string
Описание
Возвращает путь к каталогу шаблона активной темы.
Возвращаемое значение
string
Исходный код
wp-includes/theme.php:337
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 );
}
История изменений
| Версия | Описание |
|---|---|
| 6.4.1 | Memoization removed. |
| 6.4.0 | Memoizes filter execution so that it only runs once for the current theme. |
| 1.5.0 | Introduced. |

