Skip to content

Instantly share code, notes, and snippets.

@awakekat
Created February 17, 2016 15:39
Show Gist options
  • Save awakekat/999edf0a483d0d2a07af to your computer and use it in GitHub Desktop.
Save awakekat/999edf0a483d0d2a07af to your computer and use it in GitHub Desktop.
Strip WP tags from menu
<?php
echo strip_tags(
wp_nav_menu(
array('theme_location' => 'primary',
'container_class' => 'top-nav',//custom container class
'echo' => false,
'items_wrap' => '%3$s'
)
),
'<a><div>'
); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment