Wordpress 未显示woocommerce商店的单一产品图像

Wordpress 未显示woocommerce商店的单一产品图像,wordpress,woocommerce,Wordpress,Woocommerce,我在几篇文章中尝试过这个解决方案,但没有一篇有效: 这里是woocommerce单一产品页面的链接 在我升级woocommerce、theme和wordpress之前,它一直有效(我不知道是哪一个导致了这种情况) 如有任何提示,将不胜感激。谢谢最后,我发现是以下功能删除了功能图像显示: function my_post_image_html( $html, $post_id, $post_image_id ) { if(is_single()) { return ''; }

我在几篇文章中尝试过这个解决方案,但没有一篇有效:

这里是woocommerce单一产品页面的链接

在我升级woocommerce、theme和wordpress之前,它一直有效(我不知道是哪一个导致了这种情况)


如有任何提示,将不胜感激。谢谢

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

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
中删除会返回图像