Skip to content

Instantly share code, notes, and snippets.

@tiberiur
Created April 13, 2016 11:59
Show Gist options
  • Save tiberiur/d4c0d1672734f87f3e0f8f24d8cb590f to your computer and use it in GitHub Desktop.
Save tiberiur/d4c0d1672734f87f3e0f8f24d8cb590f to your computer and use it in GitHub Desktop.
[WP] Add page title in body class
function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) && !is_home() ) {
$classes[] = $post->post_type . '-' . $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