这不是Woocommerce特有的,只是常规的WordPress术语编辑屏幕。所以你可以用正常的动作{$taxonomyname}_edit_form_fields
.
示例:
add_action( "product_cat_edit_form_fields", function() {
?>
<tr class="form-field">
<th scope="row">Additional image</th>
<td>Some image upload code …</td>
</tr>
<?php
}, 2000 );