Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter marisaporter

    (@marisqa)

    Hi place this code in your functions file if you’re having this issue:

    function change_login_page_url( $url ) {
        $link_url='https://marisaporter.com/drugfreepaauction';
        return $link_url;
    }
    add_filter( 'login_headerurl', 'change_login_page_url' );
    
    function my_custom_login_logo() {
        echo '<style type="text/css">
            h1 a { background-image:url('.get_bloginfo('template_url').'/images/dfpa_logo_color_transparent_fordemo1.png) !important; background-size: 150px auto !important; }
        </style>';
    }
    
    add_action('login_head', 'my_custom_login_logo');

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Thread Starter marisaporter

    (@marisqa)

    Replace my image file and my website with yours.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘replace wordpress logo with custom logo’ is closed to new replies.