Skip to content

Instantly share code, notes, and snippets.

@tomhemsley
Created March 3, 2014 17:15
Show Gist options
  • Save tomhemsley/9329784 to your computer and use it in GitHub Desktop.
Save tomhemsley/9329784 to your computer and use it in GitHub Desktop.
function twentyfourteen_remove_masthead_fixed( $classes ) {
$return = array();
foreach ($classes as $class) {
if ($class != 'masthead-fixed') {
$return[] = $class;
}
}
return $return;
}
add_filter( 'body_class', 'twentyfourteen_remove_masthead_fixed', 999, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment