_wp_add_themesphp_notice_styling

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

WordPress Version: 1.1

/**
 * Temporary function to add a missing style rule to the themes page.
 * This avoids the need to ship an entirely rebuilt wp-admin.css in partial builds.
 *
 * @since 4.1.1
 * @ignore
 */
function _wp_add_themesphp_notice_styling()
{
    global $pagenow;
    if ('themes.php' == $pagenow) {
        echo "<style type='text/css'>.themes-php div.notice { margin: 0 0 20px 0; clear: both; }</style>\n";
    }
}