Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save wbcomdev/04dfeb24bba0242883473fec5638eda6 to your computer and use it in GitHub Desktop.

Select an option

Save wbcomdev/04dfeb24bba0242883473fec5638eda6 to your computer and use it in GitHub Desktop.
/**
* Add a custom field (in an order) to the emails.
*/
function wb_woocommerce_email_order_meta_fields( $fields, $sent_to_admin, $order ) {
$fields['hear_about_us'] = array(
'label' => __( 'Hear About Us' ),
'value' => get_post_meta( $order->id, 'hear_about_us', true ),
);
return $fields;
}
add_filter( 'woocommerce_email_order_meta_fields', 'wb_woocommerce_email_order_meta_fields', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment