I added descriptions to my menus using this post, Menu items description? Custom Walker for wp_nav_menu(). However I need to be able to use html tags and WordPress is stripping them out. Can anyone help?
2 Answers
You can remove the filter by adding this to your functions.php file:
remove_filter('nav_menu_description', 'strip_tags');