Skip to content

Instantly share code, notes, and snippets.

@eri-trabiccolo
Created May 13, 2015 08:59
Show Gist options
  • Save eri-trabiccolo/3c2d6832485b0b092c32 to your computer and use it in GitHub Desktop.
Save eri-trabiccolo/3c2d6832485b0b092c32 to your computer and use it in GitHub Desktop.
Menu item attribute manipulation
add_filter( 'nav_menu_link_attributes', 'menu_item_data_toggle', 10, 2 );
function menu_item_data_toggle( $atts, $item) {
// Manipulate attributes
if ( 74 == $item -> ID )
$atts['data-toggle'] = 'modal';
return $atts;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment