How to Hide the "HubSpot" Admin Menu

function plt_hide_cf7_hubspot_menus() {
	//Hide the "HubSpot" menu.
	remove_menu_page('vxcf_hubspot');
}

add_action('admin_menu', 'plt_hide_cf7_hubspot_menus', 61);

Where do I put this code?