I use Magento 1.9 and I need to get the tags of any single product on cart page https://github.com/OpenMage/magento-mirror/blob/magento-1.9/app/design/frontend/base/default/template/checkout/cart/item/default.phtml, there is a loop and the product is taken with $_item = $this->getItem();, I take the products with
Mage::getSingleton('catalog/product')->load($_item->getProductId());
but I can't understand how I can take the Magento product tags (https://www.hostknox.com/tutorials/magento/tags) of the single product in this cart page.
Thanks