gutenberg编辑器附带了一个嵌入式样式表。下面是样式表中的一个片段:
...
.editor-styles-wrapper {
font-family: "Noto Serif", serif;
font-size: 16px;
line-height: 1.8;
color: #191e23;
}
.editor-styles-wrapper p {
font-size: 16px;
line-height: 1.8;
}
...
我已使用以下命令将自己的编辑器样式表排队:
add_action("enqueue_block_editor_assets", "enqueue_custom_block_editor_assets");
function enqueue_custom_block_editor_assets() {
wp_enqueue_style("editor-style", get_stylesheet_directory_uri()."/editor-style.css", null, null);
}
因为我有自己的编辑器样式表,所以我想去掉默认的样式表。对该主题的搜索会产生许多结果,用于删除
前端
,但我指的是后端的编辑器样式。谢谢你的帮助!