0

我在 Magento 中为自定义 rss 提要创建了一个 phtml 文件。然后在我的模板上使用

$this->getChildHtml('rssfeed'). 

我还使用将它添加到我的 page.xml 中

<block type="core/template".../>. 

奇怪的是,它可以在一台服务器上运行,但是当我开始在另一台服务器上添加它时,它就不会再出现了。这可能是什么原因?我已经清除了所有缓存并重新索引,但它仍然不会出现。

4

2 回答 2

2

你也可以像下面这样调用任何 phtml 文件,我认为这在任何 .phtml 文件中都很容易使用

<?php echo $this->getLayout()->createBlock('core/template')->setTemplate('templateFolder/yourtemplate.phtml')->toHtml(); ?>
于 2013-07-09T14:37:34.363 回答
0

基本上是区分大小写的,请检查一下。

于 2013-07-09T07:30:10.560 回答