Skip to content

Instantly share code, notes, and snippets.

@braddalton
Forked from pippinsplugins/gist:9641841
Last active October 11, 2017 05:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/bf6050f637e7def8802f77e5d84a22c8 to your computer and use it in GitHub Desktop.
Save braddalton/bf6050f637e7def8802f77e5d84a22c8 to your computer and use it in GitHub Desktop.
Track Users I.P Address in WordPress Theme
add_action( 'loop_start', 'display_users_ip_address' );
function display_users_ip_address() {
if ( ! empty( $_SERVER['HTTP_CLIENT_IP'] ) ) {
$ip = $_SERVER['HTTP_CLIENT_IP'];
} elseif ( ! empty( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) {
$ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
$ip = $_SERVER['REMOTE_ADDR'];
}
return apply_filters( 'edd_get_ip', $ip );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment