Skip to content

Instantly share code, notes, and snippets.

@mikeott
Created November 30, 2022 00:52
Show Gist options
  • Select an option

  • Save mikeott/d934943b89c726590da6e1ff1f89bf9a to your computer and use it in GitHub Desktop.

Select an option

Save mikeott/d934943b89c726590da6e1ff1f89bf9a to your computer and use it in GitHub Desktop.
Add body class to admin
/* Add body class to admin */
add_filter( 'admin_body_class', 'my_body_class' );
function my_body_class( $class ) {
$class .= ' stormbox-plugin ';
return $class;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment