Magento 中参考图像的 URL
在 Magento 中引用 .phtml 文件中的图像的最佳方法是什么?我试图将图像(位于“图像”文件夹中)插入到 footer.phtml 中,但
{{skin url='images/image.gif'}}
似乎不起作用。有什么想法吗?
what's the best way to reference an image from within a .phtml file in Magento. I'm trying to insert an image (sitting in the 'images' folder) into footer.phtml and
{{skin url='images/image.gif'}}
doesn't seem to work. any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您指的是皮肤文件夹中的 images 文件夹,那么您可以使用
Mage::getDesign()->getSkinUrl('images/image.gif')
。If you're referring to the images folder in your skin folder, then you could use
Mage::getDesign()->getSkinUrl('images/image.gif')
.