From ae422f43ab901bc150d6a590332f6e46695a29af Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 17 Nov 2010 17:21:45 +0000 Subject: [PATCH] Add admin-bar class to body_class() if the admin bar is showing. fixes #15455 git-svn-id: https://develop.svn.wordpress.org/trunk@16432 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/post-template.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index ae5708e7ba..e704fb4a11 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -498,6 +498,9 @@ function get_body_class( $class = '' ) { if ( is_user_logged_in() ) $classes[] = 'logged-in'; + if ( is_admin_bar_showing() ) + $classes[] = 'admin-bar'; + $page = $wp_query->get( 'page' ); if ( !$page || $page < 2)