Answers for "change wordpress login logo without plugin"

PHP
2

adding logo support to wordpress site

add_theme_support( 'custom-logo' );
Posted by: Guest on September-22-2020
2

adding logo support to wordpress site

if ( function_exists( 'the_custom_logo' ) ) {
 the_custom_logo();
}
Posted by: Guest on September-22-2020
0

change wordpress login logo without plugin

function wpb_login_logo() { ?>
    <style type="text/css">
        #login h1 a, .login h1 a {
            background-image: url(http://path/to/your/custom-logo.png);
        height:100px;
        width:300px;
        background-size: 300px 100px;
        background-repeat: no-repeat;
        padding-bottom: 10px;
        }
    </style>
<?php }
add_action( 'login_enqueue_scripts', 'wpb_login_logo' );
Posted by: Guest on July-06-2021

Code answers related to "change wordpress login logo without plugin"

Browse Popular Code Answers by Language