2014-01-21 51 views

回答

0

只需添加以下代碼到你的「woocommerce出口-csv.php」

add_filter('woocommerce_export_csv_extra_columns', 'sites_add_custom_meta', 10); 

和定義功能

function sites_add_custom_meta() { 
    $custom_meta_fields['columns'][] = 'IP Address'; 
    $custom_meta_fields['data'][] = '_customer_ip_address'; 
    return $custom_meta_fields; 
} 

在此功能中有兩件事情你需要定義。首先,在列數組中,您需要定義自定義元字段的標題,然後在數據數組中,您需要定義該字段的數據所在的實際元字段名稱。您需要在兩個陣列中具有相同的順序才能在正確的列標題下輸出正確的信息。

來源:http://docs.woothemes.com/document/ordercustomer-csv-exporter/#section-4