Skip to content

Instantly share code, notes, and snippets.

@kilbot
Last active October 8, 2015 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kilbot/448a912a714919af0291 to your computer and use it in GitHub Desktop.
Save kilbot/448a912a714919af0291 to your computer and use it in GitHub Desktop.
Hook to access product meta on order creation
function custom_order_item_meta_hook( $meta_id, $order_item_id, $meta_key, $meta_value ){
if( $meta_key == 'Delivery Date' ){
// Do something
}
}
add_action( 'added_order_item_meta', 'custom_order_item_meta_hook', 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment