Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Last active March 18, 2024 12:40
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdmrhn/2ce9f1a4b47168562b859b65a8a911ad to your computer and use it in GitHub Desktop.
Save tdmrhn/2ce9f1a4b47168562b859b65a8a911ad to your computer and use it in GitHub Desktop.
Blocksy Add Menu Shortcode
<?php
add_shortcode('listmenu', function ($atts, $content = null) {
extract(shortcode_atts(array( 'name' => null, 'class' => null ), $atts));
return wp_nav_menu( array( 'menu' => $name, 'menu_class' => 'mymenu', 'echo' => false ) );
} );
// Usage [listmenu name="Menu Name"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment