Changing the login and register wordpress logo to custom logo
Description
This code will allow you to use a custom logo for the login and register pages. Please paste the following code in the functions.php file and change the path of the logo
This code will allow you to use a custom logo for the login and register pages. Please paste the following code in the functions.php file and change the path of the logo
PHP Source Code
function my_login_logo_one() {
?>
<style type="text/css">
body.login div#login h1 a {
background-image: url(/wp-content/themes/nigerianscamtricks/images/nigerianscamtircksblack.png); //Add your own logo image in this url
padding-bottom: 30px;
width: 326px;
padding: 0px;
background-size: 318px;
height: 50px;
}
</style>
<?php
} add_action( 'login_enqueue_scripts', 'my_login_logo_one' );