Snippets repository for WordPress developpers

Browse
// functions.php
function sp_add_slug_body_class( $classes ) {
  global $post;
  if ( isset( $post ) ) {
    $classes[] = $post->post_type . '-' . $post->post_name;
  }
  return $classes;
}
add_filter( 'body_class', 'sp_add_slug_body_class' );;
Tags: ,

Categories

Tags