I’m trying to figure out how to add a span tag to a certain menu link in a custom menu. I only need it on one link within the custom menu links. Guessing a preprocess function and tried theme_menu_item_link() with no luck, didn’t appear it was getting called at all.
I’m trying to figure out how to add a span tag to a certain
Share
Found the answer! Needed to use
theme_menu_link():http://api.drupal.org/api/drupal/includes%21menu.inc/function/theme_menu_link/7
There I can find the item I’m looking for and adjust it accordingly.