Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created July 10, 2014 17:22
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 JiveDig/e6e53f8504f7e3eab395 to your computer and use it in GitHub Desktop.
Save JiveDig/e6e53f8504f7e3eab395 to your computer and use it in GitHub Desktop.
Add body class to admin area
<?php
//* Add custom admin body class to the head
add_filter( 'admin_body_class', 'beats_admin_body_class' );
function beats_admin_body_class( $classes ) {
$classes .= 'beatminded';
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment