How to Hide the "Consent Manager" Admin Menu

function plt_hide_adsimple_cookie_manager_for_wp_menus() {
	//Hide the "Consent Manager" menu.
	remove_menu_page('as_cm_settings');
}

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

Where do I put this code?