2010-02-27 04:37:38 +01:00
|
|
|
<?php
|
2015-09-03 05:39:21 +02:00
|
|
|
/**
|
|
|
|
* Core class used for managing HTTP transports and making HTTP requests.
|
2010-02-27 04:37:38 +01:00
|
|
|
*
|
2021-11-07 02:36:57 +01:00
|
|
|
* This file is deprecated, use 'wp-includes/class-wp-http.php' instead.
|
2010-02-27 04:37:38 +01:00
|
|
|
*
|
2021-11-07 02:36:57 +01:00
|
|
|
* @deprecated 5.9.0
|
|
|
|
* @package WordPress
|
2010-02-27 04:37:38 +01:00
|
|
|
*/
|
2013-09-04 06:49:12 +02:00
|
|
|
|
2021-11-07 02:36:57 +01:00
|
|
|
_deprecated_file( basename( __FILE__ ), '5.9.0', 'wp-includes/class-wp-http.php' );
|
2013-09-04 06:49:12 +02:00
|
|
|
|
2021-11-07 02:36:57 +01:00
|
|
|
/** WP_Http class */
|
|
|
|
require_once ABSPATH . 'wp-includes/class-wp-http.php';
|