Skip to content

Instantly share code, notes, and snippets.

@mindctrl
Created March 4, 2025 16:04
Show Gist options
  • Save mindctrl/f48461fc189540845302c167201bfed9 to your computer and use it in GitHub Desktop.
Save mindctrl/f48461fc189540845302c167201bfed9 to your computer and use it in GitHub Desktop.
Remove spammy WP-Mail-SMTP submenus
<?php
add_action( 'admin_menu', function() {
remove_submenu_page( 'wp-mail-smtp', 'wp-mail-smtp-reports' );
remove_submenu_page( 'wp-mail-smtp', 'wp-mail-smtp-logs' );
remove_submenu_page( 'wp-mail-smtp', 'wp-mail-smtp-about' );
remove_submenu_page( 'wp-mail-smtp', 'manage_options' );
global $submenu;
unset( $submenu['wp-mail-smtp'][5] );
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment