(identifier)_post_args
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
(identifier)_post_args
woocommerce/packages/action-scheduler/lib/WP_Async_Request.php 160
return apply_filters( $this->identifier . '_post_args', $args );