Styled Blog List #1

Here is the sample of the styled blog list with customized left sidebar. Build amazing styled blog lists with Scalia's top-notch blog styles!
Load Products by Category ID

<?php$_category = Mage::getModel(‘catalog/category’)->load(47);$_productCollection = $_category->getProductCollection();if($_productCollection->count()) { foreach( $_productCollection as $_product ): echo $_product->getProductUrl(); echo $this->getPriceHtml($_product, true); echo $this->htmlEscape($_product->getName()); endforeach;}?>

1 14 15 16 53