How to Hide All In One Woo Cart Admin Menus

function plt_hide_th_all_in_one_woo_cart_menus() {
	//Hide the "ThemeHunk" menu.
	remove_menu_page('themehunk-plugins');
	//Hide the "ThemeHunk → ThemeHunk" menu.
	remove_submenu_page('themehunk-plugins', 'themehunk-plugins');
	//Hide the "ThemeHunk → AIO Woo Cart" menu.
	remove_submenu_page('themehunk-plugins', 'taiowc');
}

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

Where do I put this code?