Skip to content

Instantly share code, notes, and snippets.

@arkadiusjonczek
Created October 11, 2015 21:19
Show Gist options
  • Save arkadiusjonczek/b0ea38bdcfef96c8e9c6 to your computer and use it in GitHub Desktop.
Save arkadiusjonczek/b0ea38bdcfef96c8e9c6 to your computer and use it in GitHub Desktop.
[WordPress] Add body class for front page
add_filter( 'body_class', 'altitude_body_class' );
function altitude_body_class( $classes ) {
$classes[] = 'front-page';
return $classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment