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’);
?>

2 Responses to “How to Create Your Personal WordPress Backend”


WP Themes

Nice fill someone in on and this fill someone in on helped me alot in my college assignement. Thanks you on your information.

Trackbacks

  1. Tweets that mention How to Create Your Personal Wordpress Backend | Web creative inspiration -- Topsy.com

Leave a Reply