增强WordPress默认文字编辑器功能 2017-3-28 11:17 | 196 | 0 | 技术文档 67 字 | 2 分钟 找到你正在使用的那个主题的模版函数文件(也就是functions.php这个文件),在第二行加入下面这段代码: //增强编辑器开始 function add_editor_buttons($buttons) { $buttons[] = 'fontselect'; $buttons[] = 'fontsizeselect'; $buttons[] … Wordpress编辑器