Advertisement
arnabkumar

admin-css-wordpress.

Jun 15th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. /* add this function to functions.php */
  2.  
  3. function admin_new_css() {?>
  4. <style type="text/css">
  5.     <!-- your css code here -->
  6. </style>
  7. <?php
  8. }
  9. add_action('admin_head', 'admin_new_css');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement