WordPress
HTML
CSS
JavaScript
jQuery
SQL
PHP
WordPress Snippets

Code Snippet

The WordPress login page is fairly plane and has the WordPress logo. It can be customized to represent your company’s brand or the site itself.

PHP

Place the following code anywhere in your theme’s functions.php document.

				
					// customizing the login page
function my_login_logo() { ?>
    <style type="text/css">
        body.login {
            background: #2c353d;
        }
        a {
            color: #ffffff !important;
        }
        #login h1 a, .login h1 a {
            background-image: url('/wp-content/uploads/logo-300x300.png');
        height: 200px;
        width: 200px;
        background-size: 200px 200px;
        background-repeat: no-repeat;
        padding-bottom: 0px;
        }
    </style>
<?php }
add_action( 'login_enqueue_scripts', 'my_login_logo' );
				
			

Once in place the styles in line 4 through 17 can be changed to suit your needs. Notice that line 11 has a link to an image uploaded to the WordPress media section. Change this to your logo image or something else you want displayed just above the login form.

Output

Customized WordPress Login Screen
Customized WordPress Login Screen

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

WordPress
HTML
CSS
JavaScript
jQuery
SQL
PHP

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.