在 WooCommerce 3.6 中向单一产品附加信息表添加行

我正在尝试向单一产品附加信息表中添加一行。

http://img.mukewang.com/61725cab0001f1b708880370.jpg

实际上是否有任何钩子或过滤器可以做到这一点?我已经搜索了钩子,但无法找出解决方案。

任何帮助表示赞赏。


慕森卡
浏览 142回答 1
1回答

喵喔喔

从 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 文件中。测试和工作。
打开App,查看更多内容
随时随地看视频慕课网APP