Whitelist multiple IP's
-
How do I whitelist multiple IP’s?
I see:
function my_ip_whitelist($allow, $ip) { return ($ip == ‘50.77.202.xxx’) ? true : $allow; } add_filter(‘limit_login_whitelist_ip’, ‘my_ip_whitelist’, 10, 2);
But what if I have more then one IP?
- The topic ‘Whitelist multiple IP's’ is closed to new replies.