如何为Gutenberg Header块添加颜色设置?我为此添加了对段落的主题支持…
function apache_theme_supported_features() {add_theme_support( 'editor-color-palette', array(
array(
'name' =>
esc_html__( 'One', '@@textdomain' ), 'slug' =>
'one', 'color' =>
esc_html( get_theme_mod( 'one', '#e63946' ) ), ), array(
'name' =>
esc_html__( 'Two', '@@textdomain' ), 'slug' =>
'two', 'color' =>
esc_html( get_theme_mod( 'two', '#97efe9' ) ), ), ) );
}
#1当前, 新编辑器不支持此功能-尽管有越来越多的支持要求。
是的, 与新WP编辑器有关的坏消息之一。
主要支持票在这里:https://github.com/WordPress/gutenberg/issues/6012
【将颜色设置添加到WordPress Gutenberg标头】请对此发表评论, 支持评论, 并为使此功能具有较高的优先级做出贡献。
推荐阅读
- 在菜单中添加菜单会生成不需要的空格如何解决
- 在WordPress中为自定义post类型添加功能
- Java中的拦截器和过滤器有什么区别
- next()和nextLine()的区别和使用
- 求一个整数存储在内存中的二进制中1的个数
- 3分钟,看懂区间估计and置信区间
- 用python实现盲盒抽奖功能(减库存)
- Linux系列(去掉目录下文件列表后缀命令)
- Spring Data JDBC - 如何使用自定义 ID 生成