Skip to content

Instantly share code, notes, and snippets.

@lkwdwrd
Created September 30, 2013 04:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lkwdwrd/6759447 to your computer and use it in GitHub Desktop.
Save lkwdwrd/6759447 to your computer and use it in GitHub Desktop.
Add post title to bodyclass
<?php
function eg_title_bodyclass( $classes ) {
$classes[] = sanitize_html_class( get_the_title() );
return $classes;
}
add_filter( 'body_class', 'eg_title_bodyclass' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment