Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amrinz/6285ba7b63944a242423293710f93f9f to your computer and use it in GitHub Desktop.
Save amrinz/6285ba7b63944a242423293710f93f9f to your computer and use it in GitHub Desktop.
remove title attribute from wp_nav_menu()
//tambahkan ke functions.php
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' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment