您可以简单地将其添加到函数中。子主题的php文件。
function display_product_category_descriptions(){
global $product;
$terms = get_the_terms( $product->get_id(), \'product_cat\');
foreach ($terms as $term) {
echo \'<p>\' . $term->description . \'</p>\';
}
}
add_action( \'woocommerce_single_product_summary\', \'display_product_category_descriptions\', 45);