如果要使用PHP或JavaScript进行检查,您没有编写,但是如果使用PHP,您可以向主题中添加一个下面的函数,如果使用Customizer预览页面,则返回true
function is_customizer_preview() {
if( isset( $_GET[\'customize_theme\'] ) ) {
return true;
} else {
return false;
}
}
然后在主题模板文件的某个地方,如果您想在正文中有一个额外的类,您可以这样使用它
<body class="some-classes <?php if(is_customizer_preview()): ?>my-customizer-class<?php endif; ?>">