Hello,
I try removing the title from the top menu, but it doesn't work. i mean the
<a href="http://bla.com/news/">title="news"news</a>.
I need it, because I want to use a qTip on all links, but in the top navi it looks horrible when there's also the submenu appearing.
I tried the following code in my functions.php
//removes title from top menu
function my_nav_notitle( $menu ){
return preg_replace('title=\"(.*?)\"','', '', $menu );
}
add_filter( 'wp_nav_menu', 'my_nav_notitle' );
and also altered the title=\"... line a bit, but could not find anything that works.
Can you help, please?
Thank you!!