Local_Ghost

change wp theme

Jul 24th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. add_filter( 'stylesheet', 'switch_ma_theme' );
  2. add_filter( 'template',   'switch_ma_theme' );
  3.  
  4. function switch_ma_theme(){
  5.     $isDomainA = strpos( $_SERVER['HOST_NAME'], 'domaina.com' ) !== false;
  6.     return $isDomainA ? 'theme-1' : 'theme-2';
  7. }
Advertisement
Add Comment
Please, Sign In to add comment