How to Hide the "Registration Email" Admin Menu

function plt_hide_custom_new_user_email_template_menus() {
	//Hide the "Settings → Registration Email" menu.
	remove_submenu_page('options-general.php', 'custom-new-user-notification');
}

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

Where do I put this code?