How to change admin login logo in wordpress backend login page
Just copy and paste below code into your theme's functions.php file or your custom plugins file
functions.php
<!--?php function rj_tender_login_logo() { ?--> <!--style type="text/css"> .login h1 a { background-image: url(<!--?php echo get_template_directory_uri(); ?-->/assets/img/logo-home.png); padding-bottom: 30px; background-size:310px auto ; width: auto; height:auto; } <!--/style><!--?php }add_action( 'login_enqueue_scripts', 'rj_tender_login_logo' );?-->
