Changing the WordPress Login Logo URL

function custom_login_logo_url() { return home_url(); // Or your desired URL } add_filter( 'login_headerurl', 'custom_login_logo_url' );

1 187 188 189