wordpress主题自定义后台编辑界面css

在主题函数functions.php中添加以下函数支持:

// 编辑器自定义css
add_theme_support( 'editor-styles' );
add_editor_style( 'style-editor.css' );

第二句代码中的style-editor.css为文件名,在主题根目录下创建此css文件即可,试试编写一些样式,查看后台编辑器效果:

p{
    background-color: #111;
}

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注