在页面中添加静态块的方法有很多,但最好的方法是什么?

发布于 2024-11-16 05:12:09 字数 314 浏览 2 评论 0原文

我想知道将创建的静态块插入到我的页面的最佳方法是什么。 fi bokszakkenstore.nl 左列的第二个块 我通过将其添加到catalog.xml来插入该块 但现在我还看到您可以通过编辑 left-col.phtml 或 page.xml 或 page.phtml 来添加它。

那么最好的方法是什么?为什么?

这是我在 Catalog.xml 中使用静态块 left_banner 执行此操作的方法

左横幅

提前致谢

i would like to know what is the best way to insert the created static block in to my page.
f.i. the second block in the left column of bokszakkenstore.nl
i inserted that block by adding it in catalog.xml
but now i also see that you can add it by editing the left-col.phtml or page.xml or page.phtml.

so what is the best way and why?

here's how i did it in catalog.xml with my static block left_banner

left_banner

thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥有 2024-11-23 05:12:09

最快的方法是这样的:

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); ?> 

但是您也可以在布局文件夹中将其创建为 XML 块,并以通常的方式将其取出(在使用自定义主题时我更喜欢这样做):

<?php echo $this->getChildHtml('block_identifier') ?> 

The quickest way is like this:

<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('block_identifier')->toHtml(); ?> 

But you can also create it as an XML block in your layouts folder and bring it out in the usual way (I prefer this when using custom themes):

<?php echo $this->getChildHtml('block_identifier') ?> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文