Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeweltheme/2198db3e97b3fbfcb18736aa279cff4d to your computer and use it in GitHub Desktop.
Save jeweltheme/2198db3e97b3fbfcb18736aa279cff4d to your computer and use it in GitHub Desktop.
Globally remove default WordPress Admin Header. Courtesy of David Walsh (http://davidwalsh.name/remove-wordpress-admin-bar-css)
add_action('get_header', 'remove_admin_login_header');
function remove_admin_login_header() {
remove_action('wp_head', '_admin_bar_bump_cb');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment