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