定制器中的文本区域中的CSS属性

时间:2021-06-04 作者:Gabriel

我正在尝试创建一个自定义字段(textarea中的文本/CSS代码),其中包括CSS建议,如定制器中的其他CSS:https://i.postimg.cc/9QhLPgVk/image.png.

每个人都有这方面的经验吗?

我需要任何类似上述截图的解决方案:https://i.postimg.cc/L55cpChD/image.png.

1 个回复
最合适的回答,由SO网友:Steve 整理而成

碰巧的是,我只是在和定制者做一些事情。

您可以使用以下类来获取所需内容。。

WP_Customize_Code_Editor_Control
我会把它包含在控件中,随时可以使用。

$wp_customize->add_control( new WP_Customize_Code_Editor_Control( $wp_customize, \'favorite_html\', array(
        \'label\' => \'Theme CSS\',
        \'description\' => \'\',
        \'code_type\' => \'text/css\',
        \'section\' => \'section_id\',
        \'settings\' => \'settings_control\'
    )));

相关推荐

在带有WordPress子主题函数的插件css之后添加自定义css文件。php

我正在尝试为我的孩子主题创建一个css文件functions.php 在一个带有句柄的特定插件css文件之后openpos.bill.bootstrap. 不幸的是,当前代码没有加载任何内容。Any idea how to solve this problem?插件使用以下代码块加载样式public function initScripts(){ global $op_in_pos_screen; global $op_in_bill_screen; glo