简体   繁体   中英

WordPress Multisite - Different admin theme on different site

I want to set different color on the dashboard of each site (in my multisite). For example the first site is based on the user's preference, but the second one always use Midnight theme.

Is there a way to set this in functions.php?

Thanks

Just found it on other's question. Put this on functions.php.

add_filter('get_user_option_admin_color', 'change_admin_color');
function change_admin_color($result) {
  if(get_current_blog_id() === 2) {
    return 'midnight';
  }
  else {
    return $result;
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM