certainlyakey
12/27/2014 - 6:51 PM

Wordpress - custom admin styling

Wordpress - custom admin styling

//Custom admin styling
function my_admin_theme_style() {
	wp_enqueue_style('my-admin-theme', get_stylesheet_directory_uri().'/admin.css');
}
add_action('admin_enqueue_scripts', 'my_admin_theme_style');