板邓:wp_editor编辑器功能增强版
Posted 板邓
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了板邓:wp_editor编辑器功能增强版相关的知识,希望对你有一定的参考价值。
在functions.php文件里添加一下代码即可:
//wp编辑器增强版 function add_editor_buttons($buttons) { $buttons[] = ‘fontselect‘; $buttons[] = ‘fontsizeselect‘; $buttons[] = ‘backcolor‘; $buttons[] = ‘underline‘; $buttons[] = ‘hr‘; $buttons[] = ‘sub‘; $buttons[] = ‘sup‘; $buttons[] = ‘cut‘; $buttons[] = ‘copy‘; $buttons[] = ‘paste‘; $buttons[] = ‘cleanup‘; $buttons[] = ‘wp_page‘; $buttons[] = ‘newdocument‘; return $buttons; } add_filter("mce_buttons_3", "add_editor_buttons");
以上是关于板邓:wp_editor编辑器功能增强版的主要内容,如果未能解决你的问题,请参考以下文章
WP Editor - wp_editor() 在 ajax 调用中未正确显示
动态生成的 Wordpress 所见即所得编辑器 (wp_editor) 无法正确显示