尝试勾住所有这些:
(但我想你必须从插件开始,因为从主题开始functions.php 可能太晚了)。
E、 g.:
/*
Plugin Name: test
Description: switchtest
Version: 0.1.0
*/
add_filter( \'template\', \'yourthing_switch_theme\' );
add_filter( \'option_template\', \'yourthing_switch_theme\' );
add_filter( \'option_stylesheet\', \'yourthing_switch_theme\' );
add_filter( \'pre_option_stylesheet\', \'yourthing_switch_theme\' );
function yourthing_switch_theme( $theme )
{
if ( is_user_logged_in() ) {
return $theme;
}
else {
return \'waiting\';
}
}