I want to add image like footer.png in

app/design/frontend/vendorname/themename/Magento_Theme/templates/html/footer.phtml

Here I am adding image using

<img src='<?php echo $this->getViewFileUrl('Company_Module::images/image-icon.png'); ?>' alt="image-icon" width="30" height="25"

Image In Magento_Theme/web/images folder

有帮助吗?

解决方案

$this->getViewFileUrl('Company_Module::images/image-icon.png');

Your image should put under web folder in your custom module: app/code/Company/Module/view/frontend/web/images/image-icon.png

许可以下: CC-BY-SA归因
scroll top