(identifier)_query_url
Filters the post arguments used during an async request.
Usage
add_filter( '(identifier)_query_url', 'wp_kama_identifier_query_url_filter' ); /** * Function for `(identifier)_query_url` filter-hook. * * @param string $url * * @return string */ function wp_kama_identifier_query_url_filter( $url ){ // filter... return $url; }
- $url(string)
- -
Where the hook is called
woocommerce/packages/action-scheduler/lib/WP_Async_Request.php 134
return apply_filters( $this->identifier . '_query_url', $url );