Advertisement
neatekFb

Switch theme only for one or more users - Wordpress

Nov 18th, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?php
  2. //// Vladimir Zhelnov - neatek.pw - Web/iOS dev
  3. // wp-content/plugins/switch/index.php
  4. add_filter('template', 'change_theme');
  5. add_filter('option_template', 'change_theme');
  6. add_filter('option_stylesheet', 'change_theme');
  7. function change_theme($theme) {
  8.     if ( get_current_user_id() == USERID_OF_USER_WP ) {
  9.         $theme = 'NAME_OF_THEME';
  10.     }
  11.     return $theme;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement