How to Hide the "Cookie Notice" Admin Menu

function plt_hide_cookiefox_menus() {
	//Hide the "Settings → Cookie Notice" menu.
	remove_submenu_page('options-general.php', 'cookiefox');
}

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

Where do I put this code?