Skip to content

Instantly share code, notes, and snippets.

@jillmugge
Created April 22, 2014 14:40
Show Gist options
  • Save jillmugge/11181776 to your computer and use it in GitHub Desktop.
Save jillmugge/11181776 to your computer and use it in GitHub Desktop.
remove thank you for creating with WP in the admin css
<?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