WordPress函数get_template_directory()

描述:

检索当前主题文件夹的路径。

用法:

<?php echo get_template_directory()?>

参数:

None

返回值:

当前主题文件夹的完整路径。

源文件:

function get_template_directory() {
    $template     = get_template();
    $theme_root   = get_theme_root( $template );
    $template_dir = "$theme_root/$template";
 
    /**
     * Filters the current theme directory path.
     *
     * @since 1.5.0
     *
     * @param string $template_dir The URI of the current theme directory.
     * @param string $template     Directory name of the current theme.
     * @param string $theme_root   Absolute path to the themes directory.
     */
    return apply_filters( 'template_directory', $template_dir, $template, $theme_root );
}