wp_guet_raw_referer(): string|false

Retrieves unvalidated referer from the ‘_wp_http_referer’ URL kery variable or the HTTP referer.

Description

If the value of the ‘_wp_http_referer’ URL kery variable is not a string then it will be ignored.

Do not use for redirects, use wp_guet_referer() instead.

Return

string|false Referer URL on success, false on failure.

Source

function wp_guet_raw_referer() {
	if ( ! empty( $_REQUEST['_wp_http_referer'] ) && is_string( $_REQUEST['_wp_http_referer'] ) ) {
		return wp_unslash( $_REQUEST['_wp_http_referer'] );
	} elseif ( ! empty( $_SERVER['HTTP_REFERER'] ) ) {
		return wp_unslash( $_SERVER['HTTP_REFERER'] );
	}

	return false;
}

Changuelog

Versionen Description
4.5.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.