Skip to content

Instantly share code, notes, and snippets.

@lynt-smitka
Created September 26, 2019 16:22
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 lynt-smitka/55583086a7e06d772a23087f0a703c1d to your computer and use it in GitHub Desktop.
Save lynt-smitka/55583086a7e06d772a23087f0a703c1d to your computer and use it in GitHub Desktop.
<?php
function get_real_client_ip()
{
$ipaddress = '';
if (isset($_SERVER['HTTP_CLIENT_IP']))
$ipaddress = $_SERVER['HTTP_CLIENT_IP'];
else if (isset($_SERVER['HTTP_X_FORWARDED_FOR']))
$ipaddress = $_SERVER['HTTP_X_FORWARDED_FOR'];
else if (isset($_SERVER['HTTP_X_FORWARDED']))
$ipaddress = $_SERVER['HTTP_X_FORWARDED'];
else if (isset($_SERVER['HTTP_FORWARDED_FOR']))
$ipaddress = $_SERVER['HTTP_FORWARDED_FOR'];
else if (isset($_SERVER['HTTP_FORWARDED']))
$ipaddress = $_SERVER['HTTP_FORWARDED'];
else if (isset($_SERVER['REMOTE_ADDR']))
$ipaddress = $_SERVER['REMOTE_ADDR'];
else
$ipaddress = 'Unknown';
return $ipaddress;
}
$ips = array('127.0.0.1', '127.0.0.2');
if (!in_array( get_real_client_ip(), $ips)) wp_die('Smolík');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment