Skip to content

Instantly share code, notes, and snippets.

@tomhayes
Last active April 28, 2017 09:57
Show Gist options
  • Save tomhayes/d010212491265a3055987202b353f8b5 to your computer and use it in GitHub Desktop.
Save tomhayes/d010212491265a3055987202b353f8b5 to your computer and use it in GitHub Desktop.
Enqueue stylesheet for admin area Add to functions.php
// Enqueue stylesheet for admin area
add_action( 'admin_enqueue_scripts', 'load_admin_style' );
function load_admin_style() {
wp_enqueue_style( 'admin_css', get_template_directory_uri() . '/admin.css', false, '1.0.0' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment