How to Hide the "Adbot" Admin Menu

function plt_hide_adbot_tracking_platform_menus() {
	//Hide the "Adbot" menu.
	remove_menu_page('adbot');
}

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

Where do I put this code?