Created
January 31, 2018 13:56
-
-
Save patilswapnilv/ba8a2225e6da8a9815b03a1ff3203216 to your computer and use it in GitHub Desktop.
Call a navigation menu using a shortcode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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