0
votes

I simply need to remove the HTML title attribute from the link used in the TwentyTen navigation menu.

The theme header file calls this

 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?>

I've tried editing where it builds the links in nav-menu-template.php but it doesn't seem to have any effect.

2

2 Answers

2
votes

Here's the answer: remove title attribute from wordpress menu

Or remove it using jQuery: in the header.php :

$(function() {
    $(“#header a”).removeAttr(“title”);
}