How to Hide the "Maintenance Redirect" Admin Menu

function plt_hide_jf3_maintenance_mode_menus() {
	//Hide the "Settings → Maintenance Redirect" menu.
	remove_submenu_page('options-general.php', 'JF3_Maint_Redirect');
}

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

Where do I put this code?