我希望更改可视化编辑器的外观
我认为您应该能够通过添加一些custom editor styles 具有add_editor_style()
作用
下面是从WP代码参考示例复制的一个基本示例。
将以下内容添加到函数中。您的php文件(child) 主题
/**
* Registers an editor stylesheet for the theme.
*/
function wpdocs_theme_add_editor_styles() {
add_editor_style( \'custom-editor-style.css\' );
}
add_action( \'admin_init\', \'wpdocs_theme_add_editor_styles\' );
接下来,创建一个名为“自定义编辑器样式”的文件。css位于(
子主题根目录中。添加到该文件的任何CSS规则都将反映在TinyMCE可视化编辑器中。文件的内容可能如下所示:body#tinymce.wp-editor {
font-family: Arial, Helvetica, sans-serif;
margin: 10px;
}
body#tinymce.wp-editor a {
color: #4CA6CF;
}
如何执行#2和#3?我没有检查css选择器,但我认为通过在body#tinymce.wp-editor
你应该得到你想要的左右空白。