Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. //Add ID to site inner
  2. add_filter( 'genesis_attr_site-inner', 'themeprefix_primary_nav_id' );
  3. function themeprefix_primary_nav_id( $attributes ) {
  4.  
  5. $attributes['id'] = 'siteInner';
  6. return $attributes;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement