How to Hide the "Notify.Events" Admin Menu

function plt_hide_notify_events_menus() {
	//Hide the "Settings → Notify.Events" menu.
	remove_submenu_page('options-general.php', 'notify-events');
}

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

Where do I put this code?