current_theme_info

The timeline below displays how wordpress function current_theme_info has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * Retrieves information on the current active theme.
 *
 * @since 2.0.0
 * @deprecated 3.4.0 Use wp_get_theme()
 * @see wp_get_theme()
 *
 * @return WP_Theme
 */
function current_theme_info()
{
    _deprecated_function(__FUNCTION__, '3.4.0', 'wp_get_theme()');
    return wp_get_theme();
}

WordPress Version: 4.4

/**
 * Retrieves information on the current active theme.
 *
 * @since 2.0.0
 * @deprecated 3.4.0 Use wp_get_theme()
 * @see wp_get_theme()
 *
 * @return WP_Theme
 */
function current_theme_info()
{
    _deprecated_function(__FUNCTION__, '3.4', 'wp_get_theme()');
    return wp_get_theme();
}

WordPress Version: 4.1

/**
 * {@internal Missing Short Description}}
 *
 * @since 2.0.0
 * @deprecated 3.4.0
 *
 * @return WP_Theme
 */
function current_theme_info()
{
    _deprecated_function(__FUNCTION__, '3.4', 'wp_get_theme()');
    return wp_get_theme();
}

WordPress Version: 3.7

/**
 * {@internal Missing Short Description}}
 *
 * @since 2.0.0
 * @deprecated 3.4.0
 *
 * @return unknown
 */
function current_theme_info()
{
    _deprecated_function(__FUNCTION__, '3.4', 'wp_get_theme()');
    return wp_get_theme();
}