wp_nav_menu strtoupper
-
I’m wanting to create my menu system with only capital letters using the strtoupper() function. Within wp_nav_menu, the links are constructed with walk_nav_menu_tree, but cannot see how. I want to change the text that is displayed at the front end to be uppercase only.
However if I change this:
$items .= walk_nav_menu_tree( $sorted_menu_items, $args->depth, $args );
to$items .= walk_nav_menu_tree( $sorted_menu_items, $args->depth, $args ); $items = strtoupper($items);
Everything within the UL LI is changed to uppercase, which I don’t want.
Any help?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘wp_nav_menu strtoupper’ is closed to new replies.