woocommerce商店单品图片未显示

时间:2017-11-24 17:45:19

标签: wordpress woocommerce

我已尝试过几篇文章中的解决方案,但其中没有一篇正在发挥作用:

这是woocommerce单品页面的链接 https://happyukgo.com/product/aptamilfirstmilk/

它曾经工作,直到我升级woocommerce,主题和wordpress(我不知道是哪一个导致这个)。

任何提示将不胜感激。感谢

1 个答案:

答案 0 :(得分:1)

最后,我发现删除特征图像显示的是以下功能:

function my_post_image_html( $html, $post_id, $post_image_id ) {
  if(is_single()) {
    return '';
  } 
  return $html;
}

add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );

functions.php中移除该图像会带回图像。