Guest User

Untitled

a guest
Dec 12th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. function meu_wp_login_url() {
  3. return get_bloginfo('url');
  4. }
  5. add_filter('login_headerurl', 'meu_wp_login_url');
  6.  
  7. function meu_wp_login_title() {
  8. return get_bloginfo('name');
  9. }
  10. add_filter('login_headertitle', 'meu_wp_login_title');
  11.  
  12. ?>
Add Comment
Please, Sign In to add comment