Skip to content

Instantly share code, notes, and snippets.

@rveitch
Created August 3, 2015 21:03
Show Gist options
  • Select an option

  • Save rveitch/114339ab2838f4f937f3 to your computer and use it in GitHub Desktop.

Select an option

Save rveitch/114339ab2838f4f937f3 to your computer and use it in GitHub Desktop.
Load CSS for admin/plugin dashboard
<?php
/**
* Load CSS for admin/plugin dashboard
*/
function load_admin_css_styles() {
wp_enqueue_style( 'yourstyle-css', plugins_url( 'css/yourstyle.css', __FILE__ ) );
}
add_action( 'admin_enqueue_scripts', 'load_admin_css_styles' )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment