在 Magento 中,如何使用 page.xml 文件在自定义的两栏左侧页面中添加 js 或 css 文件。
我在 page.xml 的第 168 行使用以下代码
<page_two_columns_left translate="label">
<label>All Two-Column Layout Pages (Left Column)</label>
**<reference name="head">
<action method="addJs"><script>sidebar_menu.js</script></action>
</reference>**
<reference name="root">
<action method="setTemplate"><template>page/2columns-left.phtml</template> </action>
<!-- Mark root page block that template is applied -->
<action method="setIsHandle"><applied>1</applied></action>
</reference>
</page_two_columns_left>
我可以通过将 js/css 放入 2column-left.phtml 来使用它,但我不认为这是一种方便的方式。我想使用 xml 添加。