I'm displaying Wordpress menu using this function:
wp_nav_menu( $args );
Menu is set in wp-admin/nav-menus.php.
Can I somehow attach ID of my choice to one of the items? I want the menu to look like:
[ Link 1 ] [ Link 2] [ LOGO (that is Link 3 also ] [ Link 4 ] [ Link 5]
I know I could style ID of the logo link such as "menu-item-123", but I'd love to change it to "logo" or something that has a meaning :)
Thanks.
I'm displaying Wordpress menu using this function:
wp_nav_menu( $args );
Menu is set in wp-admin/nav-menus.php.
Can I somehow attach ID of my choice to one of the items? I want the menu to look like:
[ Link 1 ] [ Link 2] [ LOGO (that is Link 3 also ] [ Link 4 ] [ Link 5]
I know I could style ID of the logo link such as "menu-item-123", but I'd love to change it to "logo" or something that has a meaning :)
Thanks.
Share Improve this question asked Oct 12, 2012 at 15:24 stillanonymous123stillanonymous123 1331 gold badge1 silver badge4 bronze badges 1- Look into using a custom nav walker codex.wordpress/Function_Reference/… – paulruescher Commented Oct 12, 2012 at 15:27
1 Answer
Reset to default 7Simply use the "Class"-field for styling. Give it a unique class, target it in your CSS file. Done.