Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个自定义小部件,我想在 phtml 模板文件中加载它的一个实例。
如何通过“Widget ID”或“Widget Instance Title”加载我的 Widget?
非常感谢。
您也可以在模板文件中以编程方式调用它,如下所示:
Mage::app()->getLayout()->createBlock(‘catalog/product_widget_new’, null, array(‘products_count’=>5, ‘template’=>’catalog/product/widget/new/content/new_list.phtml’))->toHtml();
当然,您需要用自己的变量替换变量。