Skip to content

Instantly share code, notes, and snippets.

@jamigibbs
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamigibbs/534323961cfc200f5cb1 to your computer and use it in GitHub Desktop.
Save jamigibbs/534323961cfc200f5cb1 to your computer and use it in GitHub Desktop.
TEC: Load stylesheet in admin
function load_custom_event_admin_style() {
wp_enqueue_style( 'custom_wp_admin_css', get_stylesheet_directory_uri() . '/admin-events.css', false, '1.0.0' );
}
add_action( 'admin_enqueue_scripts', 'load_custom_event_admin_style' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment