Changeset 57644 for trunk/src/wp-includes/class-wp-http.php
- Timestamp:
- 02/16/2024 09:45:18 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-http.php
r57501 r57644 612 612 * @param string|array $args Optional. Override the defaults. 613 613 * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. 614 * A WP_Error instance upon error. 614 * A WP_Error instance upon error. See WP_Http::response() for details. 615 615 */ 616 616 public function post( $url, $args = array() ) { … … 630 630 * @param string|array $args Optional. Override the defaults. 631 631 * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. 632 * A WP_Error instance upon error. 632 * A WP_Error instance upon error. See WP_Http::response() for details. 633 633 */ 634 634 public function get( $url, $args = array() ) { … … 648 648 * @param string|array $args Optional. Override the defaults. 649 649 * @return array|WP_Error Array containing 'headers', 'body', 'response', 'cookies', 'filename'. 650 * A WP_Error instance upon error. 650 * A WP_Error instance upon error. See WP_Http::response() for details. 651 651 */ 652 652 public function head( $url, $args = array() ) {
Note: See TracChangeset
for help on using the changeset viewer.