wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_http_origin › WordPress Function

Da3.4.0
Deprecaton/a
get_http_origin ( Nessun parametro )
Ritorna:
  • (string) URL of the origin. Empty string if no origin.
Definito a:
Codex:

Get the HTTP Origin of the current request.



Sorgenti

function get_http_origin() {
	$origin = '';
	if ( ! empty( $_SERVER['HTTP_ORIGIN'] ) ) {
		$origin = $_SERVER['HTTP_ORIGIN'];
	}

	/**
	 * Change the origin of an HTTP request.
	 *
	 * @since 3.4.0
	 *
	 * @param string $origin The original origin for the request.
	 */
	return apply_filters( 'http_origin', $origin );
}