Add Caret to Menu Items with Sub-Menus in WordPress Theme

I do this using jQuery (since it doesn’t necessarily need to be in the TEXT (for screen readers, etc.) – just another option…:

jQuery(document).ready(function() {
  jQuery('ul#nav li').has('ul').addClass('parentul');
});

Then for that “parentul” class I put in a background image of an arrow and position it to the right > …

Leave a Comment