Created
June 26, 2017 19:36
-
-
Save iamcanadian1973/e5c1de518ce819208f10b8460548e735 to your computer and use it in GitHub Desktop.
Add CSS script to WP admin
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 | |
add_action( 'admin_enqueue_scripts', 'load_admin_scripts' ); | |
function load_admin_scripts() { | |
wp_enqueue_style( 'admin_css', get_template_directory_uri() . '/css/subscriber.css', false, '1.0' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment