different theme based on login ID
-
I’m trying to figure out how to switch themes based on the user’s login ID (not the user number). Here’s what I have been trying but I can’t seem to get it to work. Would someone glance at this and tell me what I need to change?
add_action( 'plugins_loaded', 'my_conditional_themes_setup', 100 ); function my_conditional_themes_setup() { //Switch to channel66 theme if user ID matches Conditional_Themes_Manager::register( 'channel66', function() { get_currentuserinfo(); return ( $current_user->user_login === '7ff6xi' ); } ); }
Thanks,
-Norm
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘different theme based on login ID’ is closed to new replies.