wp-includes/http.php:413Gets the HTTP Origin of the current request.
stringOne hook fires while get_http_origin() runs, in this order:
Changes the origin of an HTTP request.
function get_http_origin() { $origin = ''; if ( ! empty( $_SERVER['HTTP_ORIGIN'] ) ) { $origin = $_SERVER['HTTP_ORIGIN']; } /** * Changes 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 );}Introduced in 3.4.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/http.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.