How to Hide Float Menu Lite Admin Menus

function plt_hide_float_menu_menus() {
	//Hide the "Wow Plugins" menu.
	remove_menu_page('wow-company');
	//Hide the "Wow Plugins →  Hey" menu.
	remove_submenu_page('wow-company', 'wow-company');
	//Hide the "Wow Plugins → Float Menu Lite" menu.
	remove_submenu_page('wow-company', 'float-menu');
}

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

Where do I put this code?