您可以使用wc_stripe_payment_metadata
专用过滤器挂钩,用于向条带网关添加(传递)一些自定义元数据,方法如下:
add_filter( \'wc_stripe_payment_metadata\', \'stripe_payment_metadata_filter_callback\', 10, 3 );
function stripe_payment_metadata_filter_callback( $metadata, $order, $prepared_source ) {
// Here below define your custom field meta key (as it\'s saved in wp_postmeta DB table)
$metadata = \'custom_meta_key\';
$metadata[ __( \'Custom Label Text (or meta key)\', \'woocommerce-gateway-stripe\' ) ] = $order->get_meta($meta_key);
return $metadata;
}
代码进入函数。活动子主题(或活动主题)的php文件。它应该会起作用。
相关线程: