我正在尝试将当前自定义主题切换到twenty fifteen
主题(如果访问者是管理员)。因此,我在我的custom theme functions.php
/*** Switching theme to Admin ***/
add_action( \'setup_theme\', \'switch_user_theme\' );
function switch_user_theme() {
if ( current_user_can( \'manage_options\' ) ) {
$user_theme = \'Twenty Fifteen\';
add_filter( \'template\', create_function( \'$t\', \'return "\' . $user_theme . \'";\' ) );
add_filter( \'stylesheet\', create_function( \'$s\', \'return "\' . $user_theme . \'";\' ) );
}
}
但是当管理员访问该站点时,仍然会显示自定义主题,而不是twenty fifteen
为什么不切换到twenty fifteen
管理员访问站点时的主题?