首先,我在这篇文章中找到了几乎解决方案: Remove featured image from the WooCommerce gallery
现在的问题是,画廊缩略图的顺序不正确(单击时显示错误的图像,例如0图像消失,1图像变为2图像等)。我猜缩略图ID搞砸了,因为缺少第一张图片?我希望是这样,这很容易,但是我几乎没有.php经验,所以如果有人可以花点时间来帮助我,我会很高兴的。
add_filter('woocommerce_single_product_image_thumbnail_html', 'remove_featured_image', 10, 2);
function remove_featured_image($html, $attachment_id ) {
global $post, $product;
$featured_image = get_post_thumbnail_id( $post->ID );
if ( $attachment_id == $featured_image )
$html = '';
return $html;
}
//不是必需的,但是出于好奇... remove_featured_image之后的10、2是什么意思?