Skip to content

Instantly share code, notes, and snippets.

@tacensi
Created October 27, 2014 17:52
Show Gist options
  • Save tacensi/f8a9ca071c50807277d0 to your computer and use it in GitHub Desktop.
Save tacensi/f8a9ca071c50807277d0 to your computer and use it in GitHub Desktop.
Adding the page slug to body_class()
// Adding page slug to body class
function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) ) {
$classes[] = $post->post_name;
}
return $classes;
}
add_filter( 'body_class', 'add_slug_body_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment