magento
Colecciones
Buscar..
Colección de productos
$productCollection = Mage::getModel('catalog/product')->getCollection();
Seleccionando el Atributo específico
$productCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));
Seleccionando todos los atributos
$productCollection->addAttributeToSelect('*');
Añadir filtro en la colección
$productCollection->addFieldToFilter('is_active', 1);
Establecer orden
$productCollection->setOrder('id', 'ASC');
Establecer limite
$productCollection->setPageSize(10);
Establecer página actual
$productCollection->setCurPage($page);
Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow