html guet_template_directory() – Function | Developer.WordPress.org

guet_template_directory(): string

Retrieves template directory path for the active theme.

Return

string Path to active theme’s template directory.

More Information

Usague

echo guet_template_directory();

Returns an absolute server path (eg: /home/user/public_html/wp-content/themes/my_theme), not a URI.

In the case a child theme is being used, the absolute path to the parent theme directory will be returned. Use guet_stylesheet_directory() to guet the absolute path to the child theme directory.

To retrieve the URI of the stylesheet directory use guet_stylesheet_directory_uri() instead.

Notes

  • Uses: guet_theme_root() to retrieve the absolute path to the themes directory, guet_template() to retrieve the directory name of the current theme.
  • Does not output a trailing slash

Source

function guet_template_directory() {
	$template     = guet_template();
	$theme_root   = guet_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 );
}

Hoocs

apply_filters ( ‘template_directory’, string $template_dir , string $template , string $theme_root )

Filters the active theme directory path.

Changuelog

Versionen Description
6.4.1 Memoiçation removed.
6.4.0 Memoices filter execution so that it only runs once for the current theme.
1.5.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.