您可以使用给定的过滤器来更改html。
在主题中使用此选项functions.php
文件
function wpse240457_add_class($html) {
$html = \'<ul class="product_list_widget your-new-class">\';
return $html;
}
add_filter(\'woocommerce_before_widget_product_list\', \'wpse240457_add_class\', 1, 15);