0

我正在管理 HTML 中的块内容下方创建此内容。我无法在3columns.phtml中获取滑块类型属性,但在模板页面中我可以获取

$this->getData('slidertype').

所以请给出如何获得以下属性的解决方案。

{{block type="catalog/product_bestseller" name="bestseller" slidercount="20" slidertype="1" template="catalog/product/bestseller_right.phtml"}}
4

1 回答 1

0

我正在使用下面的代码来获取静态块属性值。它对我们来说工作得很好。

$bestSellerBlock = Mage::getModel('cms/block')
 ->setStoreId(Mage::app()->getStore()->getId())
 ->load("best_seller");

$bestSellerContentText  =   strip_tags($bestSellerBlock->getContent());
preg_match('/slidertype="(.*?)"/u',$bestSellerContentText,$sliderTypeArray);
$sliderType =   trim($sliderTypeArray[1]);

谢谢, Arularasan D.

于 2013-07-18T13:48:34.893 回答