wp_get_original_referer()

Retrieve original referer that was posted, if it exists.


Description Description


Return Return

(string|false) False if no original referer or original referer if set.


Top ↑

Source Source

File: wp-includes/functions.php

function wp_get_original_referer() {
	if ( ! empty( $_REQUEST['_wp_original_http_referer'] ) && function_exists( 'wp_validate_redirect' ) ) {
		return wp_validate_redirect( wp_unslash( $_REQUEST['_wp_original_http_referer'] ), false );
	}
	return false;
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.0.4 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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