如何编辑 Woocommerce 产品小部件 html class?

How can I edit the Woocommerce product widget html class?

我想向现有的 woocommerce 产品小部件添加 class。

文件 '/includes/widgets/class-wc-widget-products.php' 具有以下过滤器。

echo apply_filters( 'woocommerce_before_widget_product_list', '<ul class="product_list_widget">' );

有没有一种方法可以在我的主题中编辑该过滤器中的 html <ul class="product_list_widget">

这似乎是直截了当的。在您的 functions.php

中添加以下内容
add_filter( "woocommerce_before_widget_product_list", "edit_product_widget_list", 1, 1 );

//$old_html contains -> <ul class="product_list_widget">
function edit_product_widget_list ( $old_html ) {
    return '<ul class="my_own_class_here">'; // change your class here
}

祝你好运:)