Skip to content

Instantly share code, notes, and snippets.

@m-e-h
Last active August 29, 2015 14:03
Show Gist options
  • Save m-e-h/62b781b7f7dfb35cb15c to your computer and use it in GitHub Desktop.
Save m-e-h/62b781b7f7dfb35cb15c to your computer and use it in GitHub Desktop.
filter the hybrid_attr()
add_filter( 'hybrid_attr_header', 'flexy_attr_header' );
function flexy_attr_header( $attr ) {
$attr['class'] .= ' app-bar';
return $attr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment