我们使用这个 Magento 代码来获取出版物列表,以便从中选择 2 显示在书店部分。
$collection = Mage::getModel('catalog/category')->getCollection();
$collection->addAttributeToSelect('url_key')
->addAttributeToSelect('name')
->addAttributeToSelect('id')
->addAttributeToSelect('description')
->addAttributeToSelect('is_anchor')
->addAttributeToFilter('is_active', 1)
->joinUrlRewrite()
->load();
如何添加要选择的属性以使其不包括设置为“不单独显示”的出版物?
如果我添加这个:
->addAttributeToFilter('visibility', 4) // Only catalog, search visiblity
代码失败并显示消息“无效的属性名称:可见性”