How to Hide the "Insightly" Admin Menu

function plt_hide_cf7_insightly_menus() {
	//Hide the "Insightly" menu.
	remove_menu_page('vxcf_insightly');
}

add_action('admin_menu', 'plt_hide_cf7_insightly_menus', 51);

Where do I put this code?