Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:51
Show Gist options
  • Select an option

  • Save tevashov/5172491 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172491 to your computer and use it in GitHub Desktop.
Customize Login Page Logo link & ALT text #WP
// CUSTOM ADMIN LOGIN LOGO LINK
function change_wp_login_url() {
return bloginfo('url'); // OR ECHO YOUR OWN URL
}
add_filter('login_headerurl', 'change_wp_login_url');
// CUSTOM ADMIN LOGIN LOGO & ALT TEXT
function change_wp_login_title() {
return get_option('blogname'); // OR ECHO YOUR OWN ALT TEXT
}
add_filter('login_headertitle', 'change_wp_login_title');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment