/menu_mobile.php Secret
Created
December 8, 2013 15:16
Revisions
-
sevenspark created this gist
Dec 8, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,28 @@ <div id="td-mobile-nav"> <!-- mobile menu close --> <div class="td-mobile-close"> <a href="#"><?php _etd('CLOSE'); ?></a> <div class="td-nav-triangle"></div> </div> <div class="td-mobile-content"> <?php wp_nav_menu(array( //'theme_location' => 'header-menu', 'theme_location' => 'mobile-menu', 'menu_class'=> '', 'fallback_cb' => 'td_wp_no_mobile_menu' )); //if no menu function td_wp_no_mobile_menu() { //this is the default menu echo '<ul class="">'; echo '<li class="menu-item-first"><a href="' . home_url() . '/wp-admin/nav-menus.php">Click here - to use the wp menu builder</a></li>'; //wp_list_pages('sort_column=menu_order&title_li='); echo '</ul>'; } ?> </div> </div>