Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function get_xml_rest_api_response( $xml ) {
  2.     $response = new WP_REST_Response( $xml );
  3.     $response->set_status( 200 );
  4.     $response->set_headers( array_merge(
  5.         $response->get_headers(),
  6.         array(
  7.             'Content-Type' => 'text/xml; charset=UTF-8'
  8.         )
  9.     ) );
  10.     return $response;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement