我需要在“我的订单列表”(woocommerce客户仪表板)中插入计费公司的名称,我使用的代码甚至添加了该列但没有填充该列。
我尝试在代码中使用billing_company
(强制性地将其填写在结帐中),但是它不起作用。
$columns['billing_company'] = __( 'Company', 'Text Domain' );
return $columns; }
add_filter( 'woocommerce_account_orders_columns', 'new_orders_columns' );
add_action( 'manage_shop_order_posts_custom_column' , 'new_orders_columns2' );
function new_orders_columns2( $column ) {
if( $column == 'billing_company' ) {
get_post_meta($order->ID,'billing_company', true);
}
}
我从代码中期望的是新列中填充了公司名称。抱歉,我是编码初学者。