天天看點

magento 擷取産品評論數量

$_product = Mage::registry('product');
	$summaryData = Mage::getModel('review/review_summary')
            ->setStoreId(Mage::app()->getStore()->getId())
            ->load($_product->getId());
	$data = $summaryData->getData();
	echo $data['reviews_count'];