Skip to content

Instantly share code, notes, and snippets.

@likesalmon
Last active August 29, 2015 14:14
Show Gist options
  • Save likesalmon/6df53215a0f91cf4864a to your computer and use it in GitHub Desktop.
Save likesalmon/6df53215a0f91cf4864a to your computer and use it in GitHub Desktop.
Add page slug to body_class() template variable in Wordpress themes. For use in /wp-content/themes/myTheme/functions.php.
function add_slug_body_class( $classes ) {
global $post;
if ( isset( $post ) ) {
$classes[] = 'slug-' . $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