Show Menu in Wordpress using shortcode
<?php
$defaults = array(
'theme_location' => '',
'menu' => 'MENU NAME',
'container' => '',
'container_class' => '',
'container_id' => '',
'menu_class' => 'mwfoot-colinks',
'menu_id' => '',
'echo' => true,
'fallback_cb' => 'wp_page_menu',
'before' => '',
'after' => '',
'link_before' => '',
'link_after' => '',
'items_wrap' => '<ul id="nav" class="%2$s">%3$s</ul>',
'depth' => 0,
'walker' => ''
);
$pages=wp_nav_menu( $defaults );
?>
Add same menu=> MNEU NAME in Apprence menu create menu MENU NAME
Comments
Post a Comment