woocommerce_explat_request_args

woocommerce_explat_request_args

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_explat_request_args') is found 1 times:

  • /includes/react-admin/class-experimental-abtest.php line 229
    		 * Get additional request args.
    		 *
    		 * @since 6.5.0
    		 */
    		$args     = apply_filters( 'woocommerce_explat_request_args', $args );
    		$response = $this->request_assignment( $args );
    
    		// Bail if there was an error or malformed response.
    		if ( is_wp_error( $response ) || ! is_array( $response ) || ! isset( $response['body'] ) ) {
    			return new \WP_Error( 'failed_to_fetch_data', 'Unable to fetch the requested data.' );
    		}