您可以使用wp\\u remote\\u get或/和wp\\u remote\\u retrieve\\u body函数来获取HTTP响应
使用GET方法从HTTP请求中检索原始响应。结果包括HTTP头和内容。法典here
$response = wp_remote_get( $url, $args );
检索已检索到的HTTP请求的正文。
Codex$the_body = wp_remote_retrieve_body( wp_remote_get(\'http://example.com\') );