我读过有关此内容的其他文章,有些人说可以通过管理面板完成所有操作,其他人说我必须在布局和模板文件中添加代码。好吧,什么都行不通...
- 我从admin> CMS>标识符为home_image-center的静态块创建了静态块
找到模板app / design / frontend / enterprise / my_theme / template / cms / home.phtml,然后在我希望该块站立的地方编写了以下代码:
<div>
<?php echo $this->getLayout()->createBlock('cms/block')->setBlockId('home_image-center')->toHtml();?>
</div>
在admin> CMS> Pages中打开了一个名为的页面
home
,在Custom Layout Update XML字段的Design标签中,我在标签之间添加了以下代码:<block type="core/template" name="home_image-center" template="cms/home.phtml" />
reference
我在静态块的内容中放置了一些文本,只是为了查看是否将其显示,而没有显示。我的最终目标是将该块放置在此处并使其具有静态图像或文本,可以在后端随时对其进行更改。
{{block type="cms/block" block_id="home_center_image" template="cms/content.phtml"}}
...没有用。