Hi there everybody,
I'm wp n00b, but I'm fluent in PHP. I'd like to move my nav-menu from header to the sidebar.
The template I use (raindrops) generates horizontal menu in the header with this:
wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary'));
In the sidebar I already have a list of pages generated with this:
wp_list_pages('title_li=<h2 class="h2">'. __( 'Pages', 'Raindrops').'</h2>' );
I like the way that wp_list_pages renders everything, and I'd like to get the same result as wp_list_pages, but instead of list pages to get my primary navigation menu.
How do I do that?
Thanks in advance!