How to Hide the "SMS Alert" Admin Menu

function plt_hide_sms_alert_menus() {
	//Hide the "Settings → SMS Alert" menu.
	remove_submenu_page('options-general.php', 'sms-alert');
}

add_action('admin_menu', 'plt_hide_sms_alert_menus', 51);

Where do I put this code?