Created
June 27, 2012 19:34
-
-
Save billerickson/3006284 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Nav Menu Dropdown Class | |
include_once( CHILD_DIR . '/lib/classes/nav-menu-dropdown.php' ); | |
/** | |
* Mobile Menu | |
* | |
*/ | |
function be_mobile_menu() { | |
wp_nav_menu( array( | |
'theme_location' => 'mobile', | |
'walker' => new Walker_Nav_Menu_Dropdown(), | |
'items_wrap' => '<div class="mobile-menu"><form><select onchange="if (this.value) window.location.href=this.value">%3$s</select></form></div>', | |
) ); | |
} | |
add_action( 'genesis_before_header', 'be_mobile_menu' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thaanks!!!!!