Magento 1.x में, मैं नीचे कोड की तरह हेल्पर का उपयोग करके सीएसएस फाइलों को सिर में जोड़ सकता हूं।
<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>
?