Body class on homepage different and other pages different in WordPress
How to change the body class on homepage in WordPress?
function get_body_class( $class = '' ) { global $wp_query; $classes = array(); //Add this below code for add different class on homepage if ( is_front_page() ) $classes[] = 'home';