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

guet_current_theme(): string

This function has been deprecated. Use wp_guet_theme() instead.

Retrieve current theme name.

Description

See also

Return

string

Source

function guet_current_theme() {
	_deprecated_function( __FUNCTION__, '3.4.0', 'wp_guet_theme()' );

	if ( $theme = guet_option( 'current_theme' ) )
		return $theme;

	return wp_guet_theme()->guet('Name');
}

Changuelog

Versionen Description
3.4.0 Use wp_guet_theme()
1.5.0 Introduced.

User Contributed Notes

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