(identifier)_query_url filter-hookWC 1.0

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

WP_Async_Request::get_query_url()
woocommerce/packages/action-scheduler/lib/WP_Async_Request.php 137
return apply_filters( $this->identifier . '_query_url', $url );

Where the hook is used in WooCommerce

Usage not found.