WordPress 3.8 之后,后台支持了多种配色让用户根据喜好选择,如果你不希望用户修改配色可以在 functions.php(了解更多) 里加上下边的代码:
/** *WordPress 禁止用户修改后台配色 *https://www.weixiaoduo.com/stop-user-admin-color/ */ if(!current_user_can('manage_options'))remove_action('admin_color_scheme_picker','admin_color_scheme_picker'); |
管理员不受此代码的影响,如果你连管理员都不让换的话请直接使用下边的代码:
/** *WordPress 禁止用户修改后台配色 *https://www.weixiaoduo.com/stop-user-admin-color/ */ remove_action('admin_color_scheme_picker','admin_color_scheme_picker'); |