The body_class hook seem only to work with non-admin pages. When I do
add_filter('body_class', 'add_body_classes');
function add_body_classes($classes) {
$classes[] = 'myclass';
return $classes;
}
Is there another hook i should be using if i want to add a class to the body of an admin page?