How to Hide Custom Email Options Admin Menus

function plt_hide_custom_email_options_menus() {
	//Hide "WB Plugins".
	remove_menu_page('wbcomplugins');
	//Hide "WB Plugins → General".
	remove_submenu_page('wbcomplugins', 'wbcomplugins');
	//Hide "WB Plugins → Email Options".
	remove_submenu_page('wbcomplugins', 'custom-email-options');
	//Hide "WB Plugins → Components".
	remove_submenu_page('wbcomplugins', 'wbcom-plugins-page');
	//Hide "WB Plugins → Themes".
	remove_submenu_page('wbcomplugins', 'wbcom-themes-page');
	//Hide "WB Plugins → Support".
	remove_submenu_page('wbcomplugins', 'wbcom-support-page');
}

add_action('admin_menu', 'plt_hide_custom_email_options_menus', 1000);

Where do I put this code?