Want to add an id element to ahref in menu
-
I’d like to add an id element to the menu anchor tags. This is what is currently generated:
<a title="About" href="https://trishladd.com/wordpress/about/">About</a>
I would like it to generate the following:
<a id="About" title="About" href="https://trishladd.com/wordpress/about/">About</a>
I tried adding this line of code in the nav-menu-template.php
$attributes = ! empty( $item->attr_title ) ? ' id="' . esc_attr( $item->attr_title ) .'"' : '';
But it didn’t change the end result one bit. I’m assuming there is something I am missing somewhere. Any advice on this would be great! Thanks!
-Trish
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Want to add an id element to ahref in menu’ is closed to new replies.