Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ashlie-elizabeth-moore/a242a0b26ec9a9ee008f598d17d58b39 to your computer and use it in GitHub Desktop.

Select an option

Save ashlie-elizabeth-moore/a242a0b26ec9a9ee008f598d17d58b39 to your computer and use it in GitHub Desktop.
Different Admin Themes for Multisite
//Different Admin Themes for Multisite
add_filter('get_user_option_admin_color', 'change_admin_color');
function change_admin_color($result) {
//site 1 --->
if(get_current_blog_id() === 2) {
return 'sunrise';
}
//site 2 --->
elseif(get_current_blog_id() === 4) {
return 'ectoplasm';
}
//site 3 --->
elseif(get_current_blog_id() === 5) {
return 'default';
}
else {
return $result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment