Skip to content

Instantly share code, notes, and snippets.

@yehudah
Forked from woogist/functions.php
Last active August 29, 2015 14:21
Show Gist options
  • Select an option

  • Save yehudah/b8e808acd7defd1accee to your computer and use it in GitHub Desktop.

Select an option

Save yehudah/b8e808acd7defd1accee to your computer and use it in GitHub Desktop.
/**
* Add the field to order emails
**/
add_filter('woocommerce_email_order_meta_keys', 'my_custom_checkout_field_order_meta_keys');
function my_custom_checkout_field_order_meta_keys( $keys ) {
$keys[‘My Field 1′] = ‘_my_field_1;
$keys[‘My Field 2′] = ‘_my_field_2′;
return $keys;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment