Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created March 19, 2014 13:39
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save pippinsplugins/9641841 to your computer and use it in GitHub Desktop.
Save pippinsplugins/9641841 to your computer and use it in GitHub Desktop.
<?php
function get_the_user_ip() {
if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
//check ip from share internet
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
//to check ip is pass from proxy
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
return apply_filters( 'edd_get_ip', $ip );
}
@jamesmcinally
Copy link

Hey Pippins, hopefully this isn't a dumb question - can this be modified so that only I can see the IP address of the visitor and record it somewhere, rather than it being displayed to the user on my wordpress site? It purely because I know competitors are clicking on my adwords costing me fortunes, but I'm don't want to spend money on tracking software, cheers, Jamessy

@karpstrucking
Copy link

@jamesmcinally this function simply returns the IP address. on its own it doesn't display it or store it etc. if you're just looking to log a list of IP addresses visiting your site, you should be able to do this more efficiently through your web traffic logs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment