kollapsminoriteten/wp-includes/class-http.php

15 lines
367 B
PHP
Raw Normal View History

2019-11-02 10:38:58 +01:00
<?php
/**
* Core class used for managing HTTP transports and making HTTP requests.
*
2022-04-02 10:26:41 +02:00
* This file is deprecated, use 'wp-includes/class-wp-http.php' instead.
2019-11-02 10:38:58 +01:00
*
2022-04-02 10:26:41 +02:00
* @deprecated 5.9.0
* @package WordPress
2019-11-02 10:38:58 +01:00
*/
2022-12-15 17:47:31 +01:00
_deprecated_file( basename( __FILE__ ), '5.9.0', WPINC . '/class-wp-http.php' );
2019-11-02 10:38:58 +01:00
2022-04-02 10:26:41 +02:00
/** WP_Http class */
2022-12-15 17:47:31 +01:00
require_once ABSPATH . WPINC . '/class-wp-http.php';