wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



wp_get_raw_referer › WordPress Function

Depuis4.5.0
Dépréciéen/a
wp_get_raw_referer ( Pas de paramètres )
Retourne:
  • (string|false) Referer URL on success, false on failure.
Défini(e) dans:
Codex:

Retrieves unvalidated referer from the '_wp_http_referer' URL query variable or the HTTP referer.

If the value of the '_wp_http_referer' URL query variable is not a string then it will be ignored. Do not use for redirects, use wp_get_referer() instead.


Source

function wp_get_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;
}