Fishpig 3列布局无法在页面/帖子中工作

时间:2015-10-03 17:04:16

标签: wordpress magento fishpig

按照这些说明显示页面/帖子的3列布局: fishpig layout XML.

app/design/frontend/my_theme/default/layout/local.xml中使用主题的local.xml 但视图仍然是默认的2列布局。

1 个答案:

答案 0 :(得分:0)

我已经对此进行了调查并在您的网站上测试了一些内容(您通过电子邮件提供了访问详细信息),并发现this link处的代码确实有效。扩展程序为每种不同的帖子类型使用布局句柄'wordpress _ {{post_type}} _ view'。因此,对于帖子,您可以使用以下XML更改根模板:

<wordpress_post_view>
    <reference name="root">
        <action method="setTemplate"><template>page/3columns.phtml</template></action>
    </reference>
</wordpress_post_view>

我在您的网站上对此进行了测试,将其添加到主题的local.xml文件中并刷新了布局缓存。这已正确地将博客帖子的根模板更改为3列布局。

对于页面,我使用了以下XML代码:

<wordpress_page_view>
    <reference name="root">
        <action method="setTemplate"><template>page/3columns.phtml</template></action>
    </reference>
</wordpress_page_view>

再次,我将此添加到您的local.xml文件,刷新缓存,然后您的Pages有一个3列页面布局。