Magento: Display New Products from Specific Category On Home Page
In my previous post, I have posted the code to add new products on your Magento home page or any page. Sometimes we have a requirement to display products category wise. Magento has built in functionality to display products from specific category. It is very simple , just set products “as new” in your catalog, only those products that belong to that category. And finally add below code in your CMS page:
{{block type="catalog/product_list" category_id="10" name="home.catalog.product.new"
alias="product_homepage" template="catalog/product/new.phtml"}}
Above code will display products that show up first in your category.
Follow @phpzag
