0

如何为 buddypress 手机使用多个主题,我想在这些主题之间快速切换。这是为了创建样式和测试主题。还比较了这些主题。

4

1 回答 1

0

创建一个文件/wp-content/sunrise.php。在那里你可以这样写:

add_filter('option_template', 'filter_get_option');
add_filter('option_stylesheet', 'filter_get_option');
function filter_get_option($value){
    // here you can based on url or any other thing 
    // change the theme on a fly, like this:
    if(true){
        $value = 'theme_1';
    }else{
        $value = 'theme_2';
    }

    return $value;
}

这有点像 hack,但它确实有效。theme_1并且theme_1是主题文件夹(里面的那些/wp-content/themes/

于 2013-07-31T07:54:59.667 回答