在magento 1.x中,我可以使用如下代码的帮助器将css文件添加到头部。
<reference name="head">
<action method="addCss"><stylesheet helper="module/helperclass/helperfunction"/></action>
</reference>
但是无法在Magento 2上执行此操作。
所以现在,我将此代码添加<link rel="stylesheet" type="text/css" media="all" href="<?php echo $_helper->getCSSFile()?>">
到“ after.body.start”容器中。
有人知道如何向其中添加自定义模板文件<head>
吗?