我在magento的子目录旁边安装了word press,如
---Magento
----wp
--Blog (This is word press directory)
在word中我们在主题文件夹中有header.php。我正在尝试访问magento标题块。
我能够得到以下方式(下面的代码写在 header.php 的wordpress的头部)
Mage::getLayout()->createBlock('page/html_head')->toHtml();
当我回应这个时,我能够获得magento标题。但是magento应用程序的css和js也没有呈现出来,在渲染magento的内容后,word press应用程序停止了。在标题之后没有任何内容。
请建议我如何正确获取magento应用程序和wordpress内容的css和js?
答案 0 :(得分:0)
脏的方法是在header.php文件中链接Magento JS和CSS。喜欢
<script type="text/javascript" src="<?php getSkinUrl('jsfolder/js.js') ?>"></script>
<link rel="stylesheet" type="text/css" href="<?php getSkinUrl('cssfolder/style.css') ?>">
在page.xml文件中实际上有一个调整,但我想知道怎么样,或者为什么不自己玩呢?