jetpack_rest_connection_check_response
jetpack_rest_connection_check_response
Appears in: jetpack.13.3.1, jetpack.13.5, jetpack.13.6, jetpack.13.7, jetpack.13.8, jetpack.13.8.1, jetpack.13.9.1, jetpack.14.0, jetpack.14.1, jetpack.14.2.1, jetpack.14.3, woocommerce.9.3.1, woocommerce.9.3.3, woocommerce.9.4.2, woocommerce.9.4.3, woocommerce.9.5.1, woocommerce.9.5.2, woocommerce.9.7.0
Hook Type: filter
See hook in action
Displaying hooks found in version: woocommerce.9.7.0apply_filters('jetpack_rest_connection_check_response') is found 1 times:
- /vendor/automattic/jetpack-connection/src/class-rest-connector.php line 101810141015101610171018101910201021102210231024
* Filters the successful response of the REST API test_connection method
*
* @param string
$response
The response string.
*/
$status
= apply_filters(
'jetpack_rest_connection_check_response'
,
'success'
);
return
rest_ensure_response(
array
(
'status'
=>
$status
,
)
);