Skip to content

Instantly share code, notes, and snippets.

@bradpotter
Last active December 20, 2015 20:19
Show Gist options
  • Save bradpotter/6189521 to your computer and use it in GitHub Desktop.
Save bradpotter/6189521 to your computer and use it in GitHub Desktop.
Add Attributes for Mobile Navigation Menu
add_filter( 'genesis_attr_nav-mobile', 'gst_attributes_nav_mobile' );
/**
* Add Attributes for Mobile Navigation Menu.
*
* @author Brad Potter
*
* @link http://www.bradpotter.com
*
* Based on code from the StudioPress Genesis Framework 2.0
*/
function gst_attributes_nav_mobile( $attributes ) {
$attributes['role'] = 'navigation';
$attributes['itemscope'] = 'itemscope';
$attributes['itemtype'] = 'http://schema.org/SiteNavigationElement';
return $attributes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment