Skip to content

Instantly share code, notes, and snippets.

@vc27
vc27 / filter_admin_body_class.php
Created October 25, 2011 17:28
Add a post_type class to the admin body element. Helpful when styling custom post types.
/**
* Filter Admin body class
*
* Add a post_type class to the admin body element. Helpful when styling custom post types.
**/
add_filter( 'admin_body_class', 'vc_admin_body_class' );
function vc_admin_body_class( $admin_body_class ) {
global $post;
if ( $_GET['post_type'] )