Advertisement
miriamdepaula

WordPress: Add styles to admin page

Dec 8th, 2015
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. add_action('admin_head', 'admin_custom_css');
  2.  
  3. function admin_custom_css() {
  4.   echo '<style>
  5.    #my-element { display: none }
  6.    #another-element { color: #fff }
  7.  </style>';
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement