1

我已经搜索了论坛,但我认为代码现在太旧了。如何删除 Woocommerce 中的特色图片?谢谢!

4

1 回答 1

0

试试这个插件,然后使用一个函数来显示画廊的第二张图片。否则它将显示特色图像留下的空白空间。

第二个选项,试试这个片段:

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

return $html;
}
add_filter( 'post_thumbnail_html', 'my_post_image_html', 10, 3 );

更多有用的信息和选项在这里。

于 2019-12-03T21:36:27.183 回答