wordpress 仅注销经典编辑器样式(但保留Guten css)

db2dz4w8  于 2023-02-03  发布在  WordPress
关注(0)|答案(1)|浏览(95)

我想保留古藤风格,我该怎么做才能只删除经典的编辑器tinymce风格?
使用函数wp_deregister_style('wp-reset-editor-styles');禁用TinyMCE上的默认WP css,以使用皮肤对其进行样式设置,但这也会破坏Guten builder。

iszxjhcz

iszxjhcz1#

要删除编辑器样式,只需找到它在主题中的排队位置(可能使用add_editor_style),然后使用下面的操作将其添加回块编辑器。

add_action( 'enqueue_block_editor_assets', 'my_enqueue_block_editor_assets', 102);
function my_enqueue_block_editor_assets () {
wp_register_style( 'wp-reset-editor-styles', get_stylesheet_directory_uri() . '/stylesheets/my-custom-stylesheet.css', false, '1.0', 'all' );
}

相关问题