按类别筛选

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了按类别筛选相关的知识,希望对你有一定的参考价值。

filter out by category ID in Magento
  1. //get the current category
  2. $_currentCategory = Mage::getModel('catalog/category')->load(Mage::registry('current_category')->getId());
  3.  
  4. //spit out the collection filtered by store then by category
  5. $_productCollection = Mage::getResourceModel('catalog/product_collection')
  6. ->addStoreFilter()
  7. ->addCategoryFilter($_currentCategory);
  8.  
  9. //get all categories
  10. $categories = Mage::getModel('catalog/category')->load($parent_category_id)->getAllChildren();
  11.  
  12. foreach ($categories as $_category)
  13. {
  14. $cur_category = Mage::getModel(���¢�¯�¿�½�¯�¿�½catalog/category���¢�¯�¿�½�¯�¿�½)->load($_category->getId());
  15. //get all products associated with the current category
  16. $products = Mage::getResourceModel(���¢�¯�¿�½�¯�¿�½catalog/product_collection���¢�¯�¿�½�¯�¿�½)
  17. ->addCategoryFilter($_category)
  18. ->addAttributeToSelect(���¢�¯�¿�½�¯�¿�½some_attributes���¢�¯�¿�½�¯�¿�½);
  19. foreach ( $products as $productModel )
  20. {
  21. $_product = Mage::getModel(���¢�¯�¿�½�¯�¿�½catalog/product���¢�¯�¿�½�¯�¿�½)->load($productModel->getId());
  22. //do something useful with this $_product object
  23. //$_product->getName(), $_product->getId() etc.
  24. }
  25.  
  26. }

以上是关于按类别筛选的主要内容,如果未能解决你的问题,请参考以下文章

按类别筛选

powerbi里如何用两列类别筛出后求和

在excel表格中设置啥公式能按类别自动求和

用于 WordPress 的 PHP 片段,用于获取所有产品子类别

举个栗子!Tableau 技巧(178):视图跳转并同步筛选条件

从WordPress博客页面筛选类别