woocommerce_fulfillment_before_create
Filter to modify the fulfillment data before it is created.
Usage
add_filter( 'woocommerce_fulfillment_before_create', 'wp_kama_woocommerce_fulfillment_before_create_filter' );
/**
* Function for `woocommerce_fulfillment_before_create` filter-hook.
*
* @param $data
*
* @return
*/
function wp_kama_woocommerce_fulfillment_before_create_filter( $data ){
// filter...
return $data;
}
- $data
- -
Changelog
| Since 10.1.0 | Introduced. |
Where the hook is called
woocommerce_fulfillment_before_create
woocommerce/src/Internal/DataStores/Fulfillments/FulfillmentsDataStore.php 59
$data = apply_filters( 'woocommerce_fulfillment_before_create', $data );