Magento – products block
Go to “CMS – Manage Pages” and select the page do you want to display the products from the list of pages.
Use next code to display products labeled as “new”:
{{block type="catalog/product_new" name="catalog.product.new" alias="new_products" template="catalog/product/new.phtml"}}
Use next code to display all products from catalog:
{{block type="catalog/product_list" name="catalog.product.list" alias="all_products" template="catalog/product/list.phtml"}}
Use next code to display all products from a specific category:
{{block type="catalog/product_list" name="catalog.product.list" alias="category_products" category_id="4" template="catalog/product/list.phtml"}}