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');