Skip to content

Instantly share code, notes, and snippets.

@obiPlabon
Created July 20, 2015 09:02
Show Gist options
  • Save obiPlabon/a8f694920194d4bc6d30 to your computer and use it in GitHub Desktop.
Save obiPlabon/a8f694920194d4bc6d30 to your computer and use it in GitHub Desktop.
Customize navigation menu title
<?php
function customize_nav_item( $title, $id ) {
if ( 'nav_menu_item' === get_post_type( $id ) ) {
$title = sprintf( '<span data-hover="%1$s">%2$s</span>',
esc_attr( $title ),
$title
);
}
return $title;
}
add_filter( 'the_title', 'customize_nav_item', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment