| @@ -265,10 +265,19 @@ | ||
| 265 | 265 | while ( ob_get_status() ) { |
| 266 | 266 | ob_end_clean(); |
| 267 | 267 | } |
| 268 | 268 | |
| 269 | - header( 'Content-Type: application/json; charset=UTF-8' ); | |
| 270 | - echo $json; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 269 | + if ( function_exists( 'gzencode' ) ) { | |
| 270 | + $response = gzencode( $json ); | |
| 271 | + | |
| 272 | + header( 'Content-Type: application/json; charset=utf-8' ); | |
| 273 | + header( 'Content-Encoding: gzip' ); | |
| 274 | + header( 'Content-Length: ' . strlen( $response ) ); | |
| 275 | + | |
| 276 | + echo $response; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 277 | + } else { | |
| 278 | + echo $json; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped | |
| 279 | + } | |
| 271 | 280 | |
| 272 | 281 | wp_die( '', '', [ 'response' => null ] ); |
| 273 | 282 | } |
| 274 | 283 | |