Lego2012
12/13/2016 - 4:10 PM

Custom admin CSS

Custom admin CSS

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

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