答案 0 :(得分:0)
这只是2个CSS样式表,用户可以通过一些JS来切换。
$('select').change(function (){
var newCSS = $(this).val();
if(newCSS == "style2"){
$('link[href="style1.css"]').attr('href','style2.css');
}
else {
$('link[href="style2.css"]').attr('href','style1.css');
}
});
您不需要WP插件来执行此操作。