Quantcast
Channel: Comment feed for "How to add support for navigation menus to your WordPress theme"
Viewing all articles
Browse latest Browse all 62

Comment on "How to add support for navigation menus to your WordPress theme" by shawn

$
0
0
One way to adjust so not have to list separate classes for container in wp_nav_menu and wp_page_menu is this: function mytheme_fallback() { $output = '<nav class="pagemenu">'; $output .= wp_page_menu('show_home=Start'); $output .= '</nav>'; echo $output; }

Viewing all articles
Browse latest Browse all 62

Trending Articles