wordpress主题自定义后台编辑界面css 2022年5月7日 zhufenghua 留下评论 在主题函数functions.php中添加以下函数支持: // 编辑器自定义css add_theme_support( 'editor-styles' ); add_editor_style( 'style-editor.css' ); 第二句代码中的style-editor.css为文件名,在主题根目录下创建此css文件即可,试试编写一些样式,查看后台编辑器效果: p{ background-color: #111; }