infact. i just made an easy temporary hack. this is in under-construction.php arround line 209. added my IP to the conditions:
// some URLs have to be accessible at all times
if ($_SERVER['REQUEST_URI'] == '/wp-admin' ||
$_SERVER['REQUEST_URI'] == '/feed/' ||
$_SERVER['REQUEST_URI'] == '/feed/rss/' ||
$_SERVER['REQUEST_URI'] == '/feed/rss2/' ||
$_SERVER['REQUEST_URI'] == '/feed/rdf/' ||
$_SERVER['REQUEST_URI'] == '/feed/atom/' ||
$_SERVER['REQUEST_URI'] == '/wp-admin/' ||
$_SERVER['REQUEST_URI'] == '/wp-login.php' ||
$_SERVER['REMOTE_ADDR'] == 'whitelistip') {
return true;
}
🙂
+1
please!!
you have the coolest construction screens 🙂 but not being able to whitelist IP makes developing pages where register/login flows need to be tested a pain…