(identifier)_post_args filter-hookWC 1.0

Filters the post arguments used during an async request.

Usage

add_filter( '(identifier)_post_args', 'wp_kama_identifier_post_args_filter' );

/**
 * Function for `(identifier)_post_args` filter-hook.
 * 
 * @param array $args 
 *
 * @return array
 */
function wp_kama_identifier_post_args_filter( $args ){

	// filter...
	return $args;
}
$args(array)
-

Where the hook is called

WP_Async_Request::get_post_args()
woocommerce/packages/action-scheduler/lib/WP_Async_Request.php 163
return apply_filters( $this->identifier . '_post_args', $args );

Where the hook is used in WooCommerce

Usage not found.