Requests::trace() WordPress Method

The Requests::trace() method is a WordPress HTTP method that allows for a request to be made to a WordPress site for debugging purposes. This is useful for developers when testing site functionality or for troubleshooting errors.

Requests::trace( $url,  $headers = array(),  $options = array() ) #

Send a TRACE request


Source

File: wp-includes/class-requests.php

	public static function trace($url, $headers = array(), $options = array()) {
		return self::request($url, $headers, null, self::TRACE, $options);
	}

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.