How to Create Your Personal WordPress Backend
Posted By Peach on June 20th, 2010
This is a complete tutorial to teach you how to create a brand new login page without any plugin. This example show you about modifying the functions.php file and add new css selectors.
Resource Site:
http://www.1stwebdesigner.com/wordpress/customize-your-wordpress-backend-for-personal-branding/
Comment:
In this tutorial there’s a thing doesn’t work, you have to change to first function that is
php
function custom_login() {
echo 'wplogin/wplogin.css" />';
}
add_action('login_head', 'custom_login');
?>
to be this…
php
function custom_login() {
echo ‘ <link rel=”stylesheet” id=”wp-css” href=”‘.get_bloginfo(‘template_directory’).’/wplogin.css” type=”text/css” media=”all” />’;
}
add_action(‘login_head’, ‘custom_login’);
?>


WP Themes
July 2nd, 2010 at 5:08 am
Nice fill someone in on and this fill someone in on helped me alot in my college assignement. Thanks you on your information.