此页面需要接受来自其他页面的帖子内容。如何创建我现在完成的新页面是静态的,它添加在管理员端CMS页面中 是这个URL app / design / frontend / default / default / template / ??
答案 0 :(得分:1)
这仅用于解释
您需要将块类型核心/模板更改为标记/流行
getLayout() - > createBlock('标记/流行') - > setTemplate('标记/ popular.phtml') - > toHtml(); ?>OR
给出块名称
{{block type="core/template" template="theme/home_banner.phtml" name="myname"}}
然后
使用xml引用include标签/ popular.phtml
在app / design / frontend / youupackage / yourtemplate / layout
创建local.xml把这段代码
<?xml version="1.0"?>
<layout version="0.1.0">
<cms_index_index translate="label">
<reference name="myname">
<block type="tag/popular" name="home_tags_popular" template="tag/popular.phtml"/>
</reference>
</cms_index_index>
</layout>
并将以下代码放在home_banner.phtml
中echo $this->getChildHtml('home_tags_popular');