dedecms更换百度编辑器

早上好,给您新鲜的问候,温暖的祝福,清晨,美好的开端,祝您今天精神振奋,精力充沛,心情愉快,一切都很好!

下载百度ueditor编辑器源码

搜索“百度ueditor”去官方下载编辑器源码

安装百度ueditor编辑器

在include目录下新建一个“ueditor”文件夹,讲刚才下载的文件解压后上传至此目录。

修改配置文件

找到include/inc/下的inc_func_funcAdmin.php文件,在判断编辑器部分,如下

if($GLOBALS['cfg_html_editor']=='fck')

在它后面大概367行添加如下判断

else if($GLOBALS['cfg_html_editor']=='ueditor')
	{	
 	$fvalue = $fvalue=='' ? '<p></p>' : $fvalue;
	$code = '<script type="text/javascript" charset="utf-8" src="/include/ueditor/ueditor.config.js"></script>
 			<script type="text/javascript" charset="utf-8" src="/include/ueditor/ueditor.all.js"></script>
			<link rel="stylesheet" type="text/css" rel="nofollow noopener noreferrer" href="/include/ueditor/themes/default/css/ueditor.css"/>
			<textarea name="'.$fname.'" id="'.$fname.'" style="width:100%;">'.$fvalue.'</textarea>
			<script type="text/javascript">var ue = new baidu.editor.ui.Editor();ue.render("'.$fname.'");</script>';
	if($gtype=="print")
	{
	  echo $code;
	 }
	else
	{
	 return $code;
	}
	}

修改网站后台系统配置

进入后台,在>系统>系统基本参数>核心设置>将“Html编辑器”改为“ueditor”,然后保存即可。

本文dedecms更换百度编辑器到此结束。狂妄的人有救,自卑的人没有救。小编再次感谢大家对我们的支持!

您可能有感兴趣的文章
dedecms如何实现任意页面调用当前会员信息的方

DedeCMS织梦判断是否有二级栏目输出HTML代码

织梦dedecms dede:arclist输出取消换行符

dedecms文章添加字段填栏目id,内容页调用字段里的栏目文章

dedeCMS首页列表页文章页调用tag的方法