Tip: Customize your login page!
Hi,
If you want to modify the login page to the
WP login page, just follow the steps below:
1. In functions/custom-options.php remove this section. It should be around line 351.
Code:
if ( $pagenow == "wp-login.php" && $_GET['action'] != 'logout' && !isset($_GET['key']) ) {
add_action('init', 'cp_login_init', 98);
add_filter('wp_title','cp_title');
add_action('wp_head', 'cp_login_css');
}
2. Upload your file and that should do it!
3. Now, if you want to customize your login page, you can install the plugin on this website:
http://www.binarymoon.co.uk/projects/bm-custom-login/. This is ideal for those who want to brand their login page...
4. In my case, I force everyone to login to see the pages, so no one will be able to see the actual website. So whoever goes to my website, they can't see what's behind the login page, because the plugin redirects them to the login page. Here's the plugin I used to to that:
http://wordpress.org/extend/plugins/force-user-login/
5. That's all! I hope this will help in some way...