Skip to content

Instantly share code, notes, and snippets.

@juliend2
Created September 7, 2012 22:08
Show Gist options
  • Save juliend2/3670148 to your computer and use it in GitHub Desktop.
Save juliend2/3670148 to your computer and use it in GitHub Desktop.
post category to body class
<body <?php
body_class(
join(' ',
wp_get_post_categories(
get_the_ID(),
array('fields'=>'slugs')
)
)
)
?>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment