0
我找不到這個文件在Magento維基,我不知道到底是什麼數據庫表或類在core/
文件夾就在於。什麼是獲得Magento產品的所有關鍵字的有效方法?
我找不到這個文件在Magento維基,我不知道到底是什麼數據庫表或類在core/
文件夾就在於。什麼是獲得Magento產品的所有關鍵字的有效方法?
裝入對象,並對其使用getMetaKeyword()。需要注意的是類別使用getMetaKeywords()
$_product = Mage::getModel('catalog/product')->loadByAttribute('sku',$sku))
$_product->getMetaKeyword();
更快的方法加載對象因爲SKU是一個靜態屬性是使用
$_product = Mage::getModel('catalog/product')->load($sku,'sku');
$_product->getMetaKeyword();