Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. // Update CSS within in Admin
  2. function admin_style() {
  3. if (current_user_can( 'administrator' ) ) {
  4. return admin_style();
  5. }
  6. wp_enqueue_style('admin-styles', get_stylesheet_directory_uri().'/admin.css');
  7. }
  8. add_action('admin_enqueue_scripts', 'admin_style');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement