Created
August 29, 2012 22:34
-
-
Save claudiosanches/3519771 to your computer and use it in GitHub Desktop.
Modificar nome e link do logo no wp-login.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function meu_wp_login_url() { | |
return get_bloginfo('url'); | |
} | |
add_filter('login_headerurl', 'meu_wp_login_url'); | |
function meu_wp_login_title() { | |
return get_bloginfo('name'); | |
} | |
add_filter('login_headertitle', 'meu_wp_login_title'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment