Skip to content

Instantly share code, notes, and snippets.

@verticalgrain
Created March 4, 2016 17:10
Show Gist options
  • Select an option

  • Save verticalgrain/0d971641741c4af8baa8 to your computer and use it in GitHub Desktop.

Select an option

Save verticalgrain/0d971641741c4af8baa8 to your computer and use it in GitHub Desktop.
WP Nav menu item title as data attribute
<?php
add_filter( 'nav_menu_link_attributes', 'nav_data_attr', 10, 3 );
function nav_data_attr( $atts, $item, $args )
{
$atts['data-title'] = $item->title;
return $atts;
}
@verticalgrain

Copy link
Copy Markdown
Author

For use on nav items that require a bold hover state using this method: http://codepen.io/verticalgrain/pen/PwmpJV

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment