/home/vianto5/hidalgoresidences.mx/wp-content/plugins/code-snippets/php/Utils
NameSizeModeActions
Code_Highlighter.php10370644editdlrm
editor.php44330644editdlrm
i18n.php21400644editdlrm
options.php23640644editdlrm
requests.php5990644editdlrm
Validator.php78140644editdlrm
Edit: /home/vianto5/hidalgoresidences.mx/wp-content/plugins/code-snippets/php/Utils/requests.php (599B)
|null Associative array of JSON data on success, null on failure. */ function unpack_response_body( $response ): ?array { $body = wp_remote_retrieve_body( $response ); if ( $body ) { $json = json_decode( $body, true ); return is_array( $json ) ? $json : null; } return null; }