Sale at BOTW

 One of my big favorites among the directories is Best Of The Web and for today they’re running a sale at 50% off. This is the largest single discount I’ve ever seen them offer and so today is a good day to submit your site or blog to their … Continue reading →

How to redirect WordPress homepage to admin/login form

 If you are building a WordPress site where all the action is happening in the back-end, you may not need the front-end at all. In this case you’d want all visitors coming to the website to go directly to the login/registration form. Here is a simple way to redirect all front-end requests to the back-end. 1. Edit your theme’s index.php and add these two lines to the top:header("Location: ".get_admin_url()); exit();2. Continue reading →