个性化阅读
专注于IT技术分析

将颜色设置添加到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

请对此发表评论, 支持评论, 并为使此功能具有较高的优先级做出贡献。

赞(0)
未经允许不得转载:srcmini » 将颜色设置添加到WordPress Gutenberg标头

评论 抢沙发

评论前必须登录!