mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
6 lines
257 B
Text
6 lines
257 B
Text
add_action( 'admin_init', 'hide_color_in_userprofile', 1 );
|
|
function hide_color_in_userprofile(){
|
|
global $_wp_admin_css_colors;
|
|
$fresh_color_data = $_wp_admin_css_colors['fresh'];
|
|
$_wp_admin_css_colors = array( 'fresh' => $fresh_color_data );
|
|
}
|