neilgee
5/14/2014 - 7:30 AM

Change ID to Menu in Genesis Theme

Change ID to Menu in Genesis Theme

<?php
//do not copy the opening php tag above
 
/**
 * Change ID in Genesis Menu
 * 
 * @package   Change ID in Genesis Menu
 * @author    Neil Gee
 * @link      http://wpbeaches.com/adding-attribute-html-section-genesis/
 * @copyright (c) 2014, Neil Gee
 */

add_filter( 'genesis_attr_nav-primary', 'themeprefix_primary_nav_id' );
function themeprefix_primary_nav_id( $attributes ) {
 
     $attributes['id'] = 'newidhere';
     return $attributes;
}