Add Body Class Add custom body class to the head of your site using the Genesis Framework: <?php // Add custom body class to the head add_filter( 'body_class', 'add_body_class' ); function add_body_class( $classes ) { $classes[] = 'custom-class'; return $classes; }