Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bradley-D/9a9e07bf689f50f40ee6 to your computer and use it in GitHub Desktop.
Save Bradley-D/9a9e07bf689f50f40ee6 to your computer and use it in GitHub Desktop.
/* ------------------------------------------------------------------------ */
/* Add Menu to page with shortcode - [menu name="menu-name"]
/* ------------------------------------------------------------------------ */
function bd_menu_content_shortcode( $atts, $content = null ) {
extract( shortcode_atts(array( 'name' => null, ), $atts ) );
return wp_nav_menu( array( 'menu' => $name, 'echo' => false ) );
}
add_shortcode( 'menu', 'bd_menu_content_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment