将颜色设置添加到WordPress Gutenberg标头

如何为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标头】请对此发表评论, 支持评论, 并为使此功能具有较高的优先级做出贡献。

    推荐阅读