Warning: This function has been deprecated. Use wp_get_theme() instead.
get_current_theme()
Retrieve current theme name.
Description Description
See also See also
Return Return
(string)
Source Source
File: wp-includes/deprecated.php
function get_current_theme() {
_deprecated_function( __FUNCTION__, '3.4.0', 'wp_get_theme()' );
if ( $theme = get_option( 'current_theme' ) )
return $theme;
return wp_get_theme()->get('Name');
}
Expand full source code Collapse full source code View on Trac
Changelog Changelog
| Version | Description |
|---|---|
| 3.4.0 | Use wp_get_theme() |
| 1.5.0 | Introduced. |
User Contributed Notes User Contributed Notes
You must log in before being able to contribute a note or feedback.
Current theme name
Get the name of the current theme.