How to Hide Super Duper SMTP Mail Bridge Admin Menus

function plt_hide_super_duper_smtp_mail_bridge_menus() {
	//Hide the "SMTP Mail Bridge" menu.
	remove_menu_page('sdsmb-dashboard');
	//Hide the "SMTP Mail Bridge → Settings" menu.
	remove_submenu_page('sdsmb-dashboard', 'sdsmb-dashboard');
	//Hide the "SMTP Mail Bridge → Email Log" menu.
	remove_submenu_page('sdsmb-dashboard', 'sdsmb-log');
}

add_action('admin_menu', 'plt_hide_super_duper_smtp_mail_bridge_menus', 11);

Where do I put this code?