Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /* Change logo on login page */
  2. function my_login_logo() { ?>
  3. <style type="text/css">
  4. #login h1 a, .login h1 a {
  5. background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/путь/к/картинке.png);
  6. height:XXXpx;
  7. width:XXXpx;
  8. background-size: XXXpx XXXpx;
  9. background-repeat: no-repeat;
  10. margin-top: XXXpx;
  11. padding-bottom: XXXpx;
  12. }
  13. </style>
  14. <?php }
  15. add_action( 'login_enqueue_scripts', 'my_login_logo' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement