Created
August 3, 2015 21:03
-
-
Save rveitch/114339ab2838f4f937f3 to your computer and use it in GitHub Desktop.
Load CSS for admin/plugin dashboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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