Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. add_action( 'admin_head', 'wpso_add_admin_custom_css' );
  2.  
  3. function wpso_add_admin_custom_css() {
  4. // Bail if Admin.
  5. if ( current_user_can( 'manage_options' ) ) {
  6. return;
  7. }
  8. ?>
  9. <style>
  10. body {background-color: #DED51F; }
  11. </style>
  12. <?php
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement