How to Hide the "BizSwoop Support" Admin Menu

function plt_hide_point_of_sale_pos_woocommerce_menus() {
	//Hide the "Tools → BizSwoop Support" menu.
	remove_submenu_page('tools.php', 'bizswoop_support');
}

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

Where do I put this code?