Skip to content

Instantly share code, notes, and snippets.

@caralgar
Last active May 10, 2018 21:23
Show Gist options
  • Save caralgar/a764b5ee2fa46809848778b226c5613d to your computer and use it in GitHub Desktop.
Save caralgar/a764b5ee2fa46809848778b226c5613d to your computer and use it in GitHub Desktop.
Cómo cambiar el enlace y título del logotipo de WordPress en el Login
<?php
function my_login_logo_url() {
return home_url();
}
add_filter( 'login_headerurl', 'my_login_logo_url' );
function my_login_logo_url_title() {
return 'Mi título personalizado';
}
add_filter( 'login_headertitle', 'my_login_logo_url_title' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment