动态更改WordPress主题

如何设置标签以动态更改wordpress当前显示的主题?
我了解此处的类似问题中所述的开关功能:使用多个模板显示页面内容-WordPress, 但我不知道如何实现更改。是否应将开关添加到主题内或主题文件夹内的index.php中?我的链接指向index.php文件吗?
我想在没有插件的情况下执行此操作。
已经执行此操作的站点的示例:www.envye.com/wordpress/
谢谢!
#1在function.php中使用它

function fxn_change_theme($theme) {if( $condition == true ) $theme = 'twentytwelve'; else $theme = 'twentyteleven'; return $theme; }add_filter('template', 'fxn_change_theme'); add_filter('option_template', 'fxn_change_theme'); add_filter('option_stylesheet', 'fxn_change_theme');

#2【动态更改WordPress主题】你可以使用switch_theme()方法。 https://codex.wordpress.org/Function_Reference/switch_theme

    推荐阅读