Skip to content

Instantly share code, notes, and snippets.

@benweiser
Last active September 21, 2015 19:49
Show Gist options
  • Save benweiser/1222a875bd552e66e582 to your computer and use it in GitHub Desktop.
Save benweiser/1222a875bd552e66e582 to your computer and use it in GitHub Desktop.
Add a custom body class to genesis single.php in your child theme's folder
<?php
add_filter('body_class', 'single_posts_body_class');
function single_posts_body_class($classes) {
$classes[] = 'custom-single';
return $classes;
}
genesis();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment