How to Hide the "Publish post email template" Admin Menu

function plt_hide_publish_post_email_notification_menus() {
	//Hide the "Settings → Publish post email template" menu.
	remove_submenu_page('options-general.php', 'manage_publish_post_notification_options');
}

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

Where do I put this code?