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
2

You can remove the filter by adding this to your functions.php file:

remove_filter('nav_menu_description', 'strip_tags');

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *