WordPress评论区调用TinyMCE编辑器(无插件)
发表
WordPress的发表评论界面默认是没有html编辑按钮的,如果要添加这些按钮的话,只需在主题目录下的functions.php里添加如下代码即可:
/*
* linux.zone_note:评论区使用tinymce编辑器
*/
function lulinux_comment_editor($field){
if (!is_single()){
return $field;
}
global $post;
ob_start();
wp_editor(''... 继续阅读 >>