浏览文章

文章信息

Magento2 读取默认占位图片|Magento2 get default placehold image 13539

代码:

怎样获得当前主题:https://bbs.aiweline.com/thread-120988.htm

...
if (!@file_exists(BP . 'pub/media/catalog/product' . $product->getImage())) {
   $image_url = str_replace('webapi_rest/_view', 'frontend/'.$this->getTheme()->getThemePath(), $placeholder_thumbnail);
} else {
   $image_url = $this->getStore()->getBaseUrl('media') . 'catalog/product' . $product->getImage();
}
...


原创