How to Hide the "GNU Terry Pratchett" Admin Menu

function plt_hide_gnu_terry_pratchett_menus() {
	//Hide the "Settings → GNU Terry Pratchett" menu.
	remove_submenu_page('options-general.php', 'gnu-terry-pratchett');
}

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

Where do I put this code?