When I log in I’m seeing the above message. This is great information but if I'm reading the code right, this would block all access including the allowed IP!!
Let me explain
Code:
order allow,deny
The correct code should be
Code:
# Block access to wp-admin. order deny,allow allow from x.x.x.x deny from all
Comment