Skip to content

Instantly share code, notes, and snippets.

@patilswapnilv
Created January 31, 2018 13:56
Show Gist options
  • Select an option

  • Save patilswapnilv/ba8a2225e6da8a9815b03a1ff3203216 to your computer and use it in GitHub Desktop.

Select an option

Save patilswapnilv/ba8a2225e6da8a9815b03a1ff3203216 to your computer and use it in GitHub Desktop.
Call a navigation menu using a shortcode
function print_menu_shortcode($atts, $content = null) {
extract(shortcode_atts(array( 'name' => null, ), $atts));
return wp_nav_menu( array( 'menu' => $name, 'echo' => false ) );
}
add_shortcode('menu', 'print_menu_shortcode');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment