Title: Request Salutation
Last modified: February 17, 2020

---

# Request Salutation

 *  Resolved [iananderson](https://wordpress.org/support/users/iananderson/)
 * (@iananderson)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/request-salutation/)
 * Hi,
    I export my orders using WP All Export, and would like to include the Salutation
   field in my exported CSV file. How can I request the field in a PHP function?
   For example: function request_customer_title ($order) { $customer_title = get_post_meta(
   $order, ‘_salutation’, true); return $customer_title; } Thanks for your help,
   Ian

Viewing 1 replies (of 1 total)

 *  Plugin Author [FAKTOR VIER](https://wordpress.org/support/users/faktorvier/)
 * (@faktorvier)
 * [6 years, 4 months ago](https://wordpress.org/support/topic/request-salutation/#post-12454419)
 * Hi [@iananderson](https://wordpress.org/support/users/iananderson/)
 * You can get the value (pretty similar to your example) with the following code:
 *     ```
       get_post_meta($order_id, '_billing_salutation', true)
       get_post_meta($order_id, '_shipping_salutation', true)
       ```
   
 * That will get you the salutation codename. If you want the readable label, you
   could wrap the following method around the methods above:
 * `\F4\WCSF\Core\Hooks::get_option_label($salutation)`
 * How that helps!

Viewing 1 replies (of 1 total)

The topic ‘Request Salutation’ is closed to new replies.

 * ![](https://ps.w.org/f4-woocommerce-salutation-fields/assets/icon-256x256.jpg?
   rev=1985795)
 * [F4 Salutation Fields for WooCommerce](https://wordpress.org/plugins/f4-woocommerce-salutation-fields/)
 * [Support Threads](https://wordpress.org/support/plugin/f4-woocommerce-salutation-fields/)
 * [Active Topics](https://wordpress.org/support/plugin/f4-woocommerce-salutation-fields/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/f4-woocommerce-salutation-fields/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/f4-woocommerce-salutation-fields/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [FAKTOR VIER](https://wordpress.org/support/users/faktorvier/)
 * Last activity: [6 years, 4 months ago](https://wordpress.org/support/topic/request-salutation/#post-12454419)
 * Status: resolved