Skip to content

Instantly share code, notes, and snippets.

@Bicarbona
Last active April 19, 2016 21:20
Show Gist options
  • Save Bicarbona/e89145203b6460f43b43 to your computer and use it in GitHub Desktop.
Save Bicarbona/e89145203b6460f43b43 to your computer and use it in GitHub Desktop.
Headway body class
<?php
add_filter( 'body_class', 'hbd_add_to_body' );
function hbd_add_to_body($existing_classes) {
$existing_classes[] = HeadwayOption::get('child-theme-backdrop-color-scheme');
return $existing_classes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment