Guest User

Untitled

a guest
Oct 21st, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. /**
  3. * Login logo link and title
  4. */
  5. add_filter( 'login_headerurl', 'custom_login_headerurl' );
  6. function custom_login_headerurl() { return get_home_url(); }
  7.  
  8. add_filter( 'login_headertitle', 'custom_login_headertitle' );
  9. function custom_login_headertitle() { return get_bloginfo( 'description' ); }
Add Comment
Please, Sign In to add comment