Title: Menu Title Attribute
Last modified: September 17, 2017

---

# Menu Title Attribute

 *  Resolved [snowme](https://wordpress.org/support/users/snowme/)
 * (@snowme)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/menu-title-attribute/)
 * Hi,
 * I’m trying to add the title attribute to a menu item but it doesn’t appear. Is
   there a script removing the title attribute from links?

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Theme Author [nobita](https://wordpress.org/support/users/nobita/)
 * (@nobita)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/menu-title-attribute/#post-9503599)
 * Hi [@snowme](https://wordpress.org/support/users/snowme/)
 * The WordPress Core does not display the title attribute of the link element with
   tooltips.
 * please try code below.
 * add functions.php
 *     ```
       <?php
       add_filter( 'nav_menu_link_attributes', 'my_nav_menu_attr_add', 10, 3 );
   
       function my_nav_menu_attr_add( $atts, $item, $args ) {
   
           if ( ! empty( $item->attr_title ) ) {
       		/**
       		 * Add title attribute for a element
       		 */
               $atts['attr_title'] = esc_attr( $item->attr_title );
       		/**
       		 * Raindrops 
       		 * To display the value of the title attribute with the tooltip with the a element, 
       		 * the raindrops theme needs the tooltip class.
       		 */
       	$atts['class'] = 'tooltip';
   
       		return $atts;
           }
           return $atts;
       }
       ?>
       ```
   
 * and **require change Theme setting**
 * Customize / Presentation / Menu /
 * Sticky Menu set No.
 * Save and Publish
 * Thank you.
 *  Thread Starter [snowme](https://wordpress.org/support/users/snowme/)
 * (@snowme)
 * [8 years, 8 months ago](https://wordpress.org/support/topic/menu-title-attribute/#post-9504990)
 * Thank you Nobita.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Menu Title Attribute’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/raindrops/1.700/screenshot.png)
 * raindrops
 * [Support Threads](https://wordpress.org/support/theme/raindrops/)
 * [Active Topics](https://wordpress.org/support/theme/raindrops/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/raindrops/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/raindrops/reviews/)

## Tags

 * [menu](https://wordpress.org/support/topic-tag/menu/)
 * [title attribute](https://wordpress.org/support/topic-tag/title-attribute/)

 * 2 replies
 * 2 participants
 * Last reply from: [snowme](https://wordpress.org/support/users/snowme/)
 * Last activity: [8 years, 8 months ago](https://wordpress.org/support/topic/menu-title-attribute/#post-9504990)
 * Status: resolved