我有一个插件,用于为特定用户切换主题进行开发。当以该用户身份登录时,他们会看到不同的样式表,但主题文件会起作用。php,标题。php等是其他所有人的活动主题。
我做错了什么?
function change_user_theme($template) {
global $user_ID;
if ( in_array( $user_ID, array( 5 ) ) ) {
$template = \'fezmobile\';
} else {
$template = \'fezforprez\';
}
return $template;
}
add_filter(\'template\', \'change_user_theme\');
add_filter(\'stylesheet\', \'change_user_theme\');
add_filter(\'option_template\', \'change_user_theme\');
add_filter(\'option_stylesheet\', \'change_user_theme\');