(identifier)_post_args
Filters the post arguments used during an async request.
Использование
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(массив)
- -
Где вызывается хук
woocommerce/packages/action-scheduler/lib/WP_Async_Request.php 163
return apply_filters( $this->identifier . '_post_args', $args );