Skip to main content
Login Join
Snippet · PHP

Add Custom Login Logo URL

Shared by Yusuf mudagal · May 2, 2026 · @login_headerurl

34 views
Back to Snippets

Changes the WordPress login logo link so it points to the site home URL instead of WordPress.org.

add_filter( 'login_headerurl', 'wpfolks_login_logo_url' );

function wpfolks_login_logo_url() {
    return home_url( '/' );
}
Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments