Advertisement
arie_cristianD

add style in wp embed block

Jul 15th, 2024
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. add_action(
  2.     'embed_head',
  3.     function () {
  4.         ?>
  5.     <style type="text/css">
  6.             .wp-embed .wp-embed-more {
  7.             text-transform: uppercase;
  8.             letter-spacing: .05em;
  9.             font-size: 11px;
  10.             margin-top: 15px;
  11.             padding: 6px 18px;
  12.             border: 1px solid #000;
  13.             transition: all .3s ease;
  14.             white-space: nowrap;
  15.             border-radius : 0 ;
  16.             box-shadow: none;
  17.             text-decoration: none;
  18.             color : #000 ;
  19.             }
  20.             .wp-embed .wp-embed-more:hover {
  21.                 background : #3943b7 ;
  22.                 border-color : #3943b7;
  23.                 color : #fff ;
  24.                 text-decoration : none ;
  25.             }
  26.         </style>
  27.  
  28.         <?php
  29.     },
  30.     99
  31. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement