喵喔喔
从 WooCommerce 3.6 版开始,您可以woocommerce_display_product_attributes以这种简单的方式使用过滤器钩子,在“附加信息”表(选项卡)中添加自定义标签/值对:add_filter( 'woocommerce_display_product_attributes', 'custom_product_additional_information', 10, 2 );function custom_product_additional_information( $product_attributes, $product ) { // First row $product_attributes[ 'attribute_' . 'custom-one' ] = array( 'label' => __('Label One'), 'value' => __('Value 1'), ); // Second row $product_attributes[ 'attribute_' . 'custom-two' ] = array( 'label' => __('Label Two'), 'value' => __('Value 2'), ); return $product_attributes;}代码位于您的活动子主题(或活动主题)的 functions.php 文件中。测试和工作。