Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function custom_theme_change_custom_theme() {
  2. global $top_bar_color;
  3. $top_bar_color = '#2b3643';
  4. if (strpos($_SERVER['HTTP_HOST'], 'example.com') !== false) {
  5. switch (returnRoleForTheme()) {
  6. case 'old': $th = 'theme_1'; $top_bar_color = '#2b3643'; break;
  7. case 'young': $th = 'theme_2'; $top_bar_color = '#6dad19'; break;
  8. case 'kid': $th = 'theme_3'; $top_bar_color = '#6dad19'; break;
  9. }
  10. }
  11. return $th;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement