Skip to content

Instantly share code, notes, and snippets.

@wolfthemes
Created February 21, 2018 10:10
Show Gist options
  • Save wolfthemes/ec31b4bcbc284f9aaf97e024b804e178 to your computer and use it in GitHub Desktop.
Save wolfthemes/ec31b4bcbc284f9aaf97e024b804e178 to your computer and use it in GitHub Desktop.
/**
* Disable menu icons
*/
function disable_menu_icons() {
remove_filter( 'walker_nav_menu_start_el', 'theme_nav_menu_social_icons' ); // replace "theme" by your theme slug (e.g "tune")
}
add_action( 'init', 'disable_menu_icons', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment