4
任何人都可以請告訴我在外行下面的代碼是什麼意思。Magento瞭解產品收集
$collection = Mage::getResourceModel('catalog/product_collection')
->addAttributeToSelect('name')
->addAttributeToSelect('sku')
->addAttributeToSelect('price')
->addAttributeToSelect('status')
->addAttributeToSelect('short_description')
->addAttributeToSelect('small_image')
->setStoreId($this->getStoreId())
->addMinimalPrice()
->addFinalPrice()
->addTaxPercents()
->addStoreFilter()
->addAttributeToFilter('is_facebook', 1)
->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds());
$collection->load();
頂部還有一件事。 – Law
$ collection = Mage :: getResourceModel('catalog/product_collection') – Law