Skip to main content

Set the Admin Color Scheme

Home Forums WordPress Admin Customization Set the Admin Color Scheme

Viewing 0 reply threads
  • Author
    Posts
    • #2480

      Layer7web
      Keymaster
      function set_default_admin_color($user_id) {
          $args = array(
              'ID' => $user_id,
              'admin_color' => 'sunrise'
          );
          wp_update_user( $args );
      }
      add_action('user_register', 'set_default_admin_color');
Viewing 0 reply threads

You must be logged in to reply to this topic.