我能够在Customizer的code textarea中突出显示SASS语法,如下所示:
add_action( \'customize_register\', function( WP_Customize_Manager $wp_customize ) {
$wp_customize->add_setting( \'favorite_html\' );
$control = new WP_Customize_Code_Editor_Control( $wp_customize, \'favorite_html\', array(
\'label\' => \'SASS\',
\'code_type\' => \'sass\',
\'settings\' => \'favorite_html\',
\'section\' => \'title_tagline\',
) );
$wp_customize->add_control( $control );
} );
via公司
@westonruter in track.
从4.9开始,编辑器由CodeMirror提供支持,因此如果您正在寻找不同的代码类型
look their.