Advertisement
Guest User

crude custom WP login logo

a guest
Jul 19th, 2010
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2. // change paths and file name to suit
  3. add_action('login_head', 'custom_login_image');
  4. function custom_login_image() {
  5. if ( file_exists( ABSPATH . 'wp-content/themes/my-theme/_inc/images/my-new-logo.gif' ) ) {
  6. ?>
  7. <style type="text/css">
  8. h1 a {
  9. background: url(<?php bloginfo('stylesheet_directory'); ?>/_inc/images/my-new-logo.gif) no-repeat 50% 0;
  10. width: 320px;
  11. height: 104px;
  12. text-indent: -9999px;
  13. overflow: hidden;
  14. padding-bottom: 15px;
  15. display: block;
  16. }
  17. </style>
  18. <?php
  19. }
  20. } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement