这是我应用于 PHP 来显示缩略图的内容:
add_filter( 'woocommerce_email_order_items_args', 'custom_email_order_items_args', 10, 1 );
function custom_email_order_items_args( $args ) {
$args['show_image'] = true;
}
add_filter( 'woocommerce_email_styles', 'custom_wc_email_styles', 20 );
function custom_wc_email_styles( $css ) {
$css .= '.order_item > td > img { background-color: #ffffff; }';
return $css;
}
代码位于子主题的functions.php 文件中(或插件中)。已测试并有效。