Skip to content

Instantly share code, notes, and snippets.

@angeliquejw
Created July 26, 2013 14:50
Show Gist options
  • Save angeliquejw/6089477 to your computer and use it in GitHub Desktop.
Save angeliquejw/6089477 to your computer and use it in GitHub Desktop.
Add page slugs to the WordPress BODY class.
<?php
add_filter( 'body_class', 'add_slug_body_class' );
function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) ) {
$classes[] = $post->post_type . '-' . $post->post_name;
}
return $classes;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment