• Resolved vajnabotond

    (@vajnabotond)


    I cannot figure out how to remove the title tag from the menu links, it`s a bit annoying because it appears near the mouse cursor when hovering.

    I am using wp_nav_menu() to display the menu.

    Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • What theme are you using? Where did you download it from?

    Thread Starter vajnabotond

    (@vajnabotond)

    I do not using any themes, I trying to create one

    There isn’t an option to suppress the title attribute in the menus generated via wp_nav_menu(). Sorry.

    Thread Starter vajnabotond

    (@vajnabotond)

    but I have other sites with menus generated with wp_nav_menu() without the title attribute

    Thread Starter vajnabotond

    (@vajnabotond)

    ok, I Found the solution:

    function my_menu_notitle( $menu ){
      return $menu = preg_replace('/ title=\"(.*?)\"/', '', $menu );
    
    }
    add_filter( 'wp_nav_menu', 'my_menu_notitle' );
    add_filter( 'wp_page_menu', 'my_menu_notitle' );
    add_filter( 'wp_list_categories', 'my_menu_notitle' );
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘remove title tag from menu links’ is closed to new replies.