edoreld

Wordpress logo(image, link & title) customizer

Dec 10th, 2012
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. function change_login_css() {
  2.   echo '<style type="text/css">
  3.    h1 a {
  4.      background-image: url('.get_stylesheet_directory_uri().'/images/wordpress-logo-2x.png) !important;
  5.    }
  6.  </style>';
  7. }
  8. add_action('login_head','change_login_css');
  9.  
  10.  
  11. function change_login_url() {
  12.   return home_url();
  13. }
  14. add_filter('login_headerurl','change_login_url');
  15.  
  16. function change_login_title() {
  17.   return get_option('blogname');
  18. }
  19. add_filter('login_headertitle','change_login_title');
Advertisement
Add Comment
Please, Sign In to add comment