get_template_directory_uri() WordPress Function
The get_template_directory_uri() function is a WordPress function that returns the URL of the current theme's directory.
get_template_directory_uri() #
Retrieves template directory URI for the active theme.
Return
(string) URI to active theme's template directory.
More Information
Notes
- Checks for SSL
- Does not return a trailing slash following the directory address
Source
File: wp-includes/theme.php
function get_template_directory_uri() {
$template = str_replace( '%2F', '/', rawurlencode( get_template() ) );
$theme_root_uri = get_theme_root_uri( $template );
$template_dir_uri = "$theme_root_uri/$template";
/**
* Filters the active theme directory URI.
*
* @since 1.5.0
*
* @param string $template_dir_uri The URI of the active theme directory.
* @param string $template Directory name of the active theme.
* @param string $theme_root_uri The themes root URI.
*/
return apply_filters( 'template_directory_uri', $template_dir_uri, $template, $theme_root_uri );
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |