Skip to content

Instantly share code, notes, and snippets.

@bogdanmoisin
Forked from ryanjbonnell/wp-config.php
Created August 26, 2016 07:17
Show Gist options
  • Save bogdanmoisin/c81ae371a8f3f963c1957f1b05a74168 to your computer and use it in GitHub Desktop.
Save bogdanmoisin/c81ae371a8f3f963c1957f1b05a74168 to your computer and use it in GitHub Desktop.
WordPress Config: Use X-Forwarded-For HTTP Header to Get Visitor's Real IP Address
// Use X-Forwarded-For HTTP Header to Get Visitor's Real IP Address
if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
$http_x_headers = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] );
$_SERVER['REMOTE_ADDR'] = $http_x_headers[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment