Skip to content

Instantly share code, notes, and snippets.

@zartgesotten
Created December 14, 2017 10:15
Show Gist options
  • Save zartgesotten/7cad7ca5fdceb0694069e86aac4330c4 to your computer and use it in GitHub Desktop.
Save zartgesotten/7cad7ca5fdceb0694069e86aac4330c4 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