-
Notifications
You must be signed in to change notification settings - Fork 82
activitypub_safe_remote_get_response
github-actions[bot] edited this page Jul 29, 2025
·
10 revisions
Action to save the response of the remote GET request.
add_filter(
'activitypub_safe_remote_get_response',
'my_activitypub_safe_remote_get_response_callback',
10,
2
);
function my_activitypub_safe_remote_get_response_callback(
array|WP_Error $response,
string $url
) {
// Your code here.
return $response;
}
-
array|WP_Error
$response
The response of the remote GET request. -
string
$url
The URL endpoint.
\do_action( 'activitypub_safe_remote_get_response', $response, $url )
\do_action( 'activitypub_safe_remote_get_response', $response, $url )
Follow @[email protected] for updates and news.