Menu Shortcode
-
I am using a shortcode I created to pull my main nav menu into an area on my testimonials page. It seems to work, except it strips out all of the styling. How can I fix this?
Here is the page:
https://creatingpositivefutures.com/testimonials-new/Here is the code I am using:
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');
Shortcode is:
[menu name="main"]
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Menu Shortcode’ is closed to new replies.