How to Hide the "Cookie Consent" Admin Menu

function plt_hide_web_pixel_studio_cookie_consent_eu_menus() {
	//Hide the "Cookie Consent" menu.
	remove_menu_page('ccwps');
}

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

Where do I put this code?