'GET', 'callback' => 'custom_health_check', )); }); function custom_health_check() { error_log('Health check endpoint hit.'); // Perform basic checks here (e.g., database connectivity) if (is_wp_error($response = wp_remote_get(home_url()))) { return new WP_Error('site_down', 'Site is down', array('status' => 500)); } return new WP_REST_Response(array('status' => 'UP'), 200); }