Advertisement
miriamdepaula

Colocando a "Admin Bar" na parte inferior do site- WordPress

Aug 4th, 2011
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. function bottom_admin_bar_css() {
  2.     echo "
  3.     <style type='text/css'>
  4.     * html body {
  5.        margin-top: 0 !important;
  6.    }
  7.    
  8.     body.admin-bar {
  9.         margin-top: -28px;
  10.         padding-bottom: 28px;
  11.     }
  12.    
  13.     body.wp-admin #footer {
  14.         padding-bottom: 28px;
  15.     }
  16.    
  17.     #wpadminbar {
  18.         top: auto !important;
  19.         bottom: 0;
  20.     }
  21.  
  22.     #wpadminbar .quicklinks .menupop ul {
  23.         bottom: 28px;
  24.     }
  25.     </style>
  26.     ";
  27. }
  28.  
  29. add_action('admin_head', 'bottom_admin_bar_css');
  30. add_action('wp_footer', 'bottom_admin_bar_css');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement