Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Created June 29, 2014 15:10
Show Gist options
  • Save aderaaij/098b41c46ce27979deeb to your computer and use it in GitHub Desktop.
Save aderaaij/098b41c46ce27979deeb to your computer and use it in GitHub Desktop.
<?php
// Page Slug Body Class
function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) ) {
$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