How to Hide the "Permalink Keeper" Admin Menu

function plt_hide_permalink_keeper_menus() {
	//Hide the "Settings → Permalink Keeper" menu.
	remove_submenu_page('options-general.php', 'permalink-keeper');
}

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

Where do I put this code?