Created
April 22, 2014 14:40
-
-
Save jillmugge/11181776 to your computer and use it in GitHub Desktop.
remove thank you for creating with WP in the admin css
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 this snipt to functions.php file. Also add a wp-admin.css file to the child theme. | |
* | |
*? | |
function load_jmg_wp_admin_style(){ | |
wp_register_style( 'jmg_wp_admin_css', get_bloginfo('stylesheet_directory') . '/wp-admin.css', false, '1.0.0' ); | |
wp_enqueue_style( 'jmg_wp_admin_css' ); | |
} | |
add_action('admin_enqueue_scripts', 'load_jmg_wp_admin_style'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment