请先下载:插入代码InsertCode for Bo-Blog FCKeditor: 下载: 插入代码 InsertCode for Bo-Blog FCKeditor.rar (32.63 KB) 首先把insertcode整个文件夹放在FCK的plugins文件夹下,在 Bo-blog中就是 editor/FCKeditor/editor/plugins 。 然后把fck_editorarea.css 复制到FCKeditor/editor/css下, 直接覆盖。 修改FCKeditor/fckconfig.js文件,在 FCKConfig.Plugins.Add( 'Media', 'zh-cn' ) ;下面加上如下 一行: 如: //在FCKConfig.Plugins.Add( 'Media', 'zh-cn' ) ;下面加上 如下一行: FCKConfig.Plugins.Add( 'insertcode' ) ; 然后修改FCKConfig.ToolbarSets, 大致如下:(不用复制下面代码,只需掌握修改方法即可!) FCKConfig.ToolbarSets["Default"] = [ ['Source','FontName','FontSize'], ['TextColor','BGColor'], ['Image','Media','Flash','Table','Smiley','SpecialChar'] , ['ShowBlocks','Preview','FitWindow'], '/', ['PasteText','Templates','Find','RemoveFormat'], ['Undo','Redo'], ['-','Bold','Italic','Underline','StrikeThrough'], ['OrderedList','UnorderedList','-','Outdent','Indent','B lockquote'], ['JustifyLeft','JustifyCenter','JustifyRight'], ['Link','Unlink','Rule'], ['Subscript','Superscript','-','InsertCode'] // No comma for the last row. 注:这里添加了 'InsertCode' ] ; FCKConfig.ToolbarSets["Basic"] = [ ['Source','Bold','Italic','TextColor','Image','Link','-','InsertCode'] // 注:这里添加了 'InsertCode' ] ; 最后,千万别忘记修改FCKeditor/editor/lang 下的语言文件 , 在语言文件(zh-cn.js & zh.js & en.js) 里逐一在最后一行 加上 InsertCodeBtn : "插入代码" InsertCodeBtn : "插入代碼" InsertCodeBtn : "InsertCode" 比如: // About Dialog DlgAboutAboutTab : "关于", DlgAboutBrowserInfoTab : "浏览器信息", DlgAboutLicenseTab : "许可证", DlgAboutVersion : "版本", DlgAboutInfo : "要获得更多信息请访问 ", InsertCodeBtn : "插入代码" }; 最后,
在模板文件里加上 <link rel="stylesheet" href="editor/fckeditor/editor/plugins/insertcode/insertcode.css"> 比如我们用的是 Bo-Blog 那么我们就在 template/您的模板/elements.php 里 在相应位置加上面那句代码 比如 在 <title>{pagetitle}{blogname} - {blogdesc}</title> 下面添加一句: <link rel="stylesheet" href="editor/fckeditor/editor/plugins/insertcode/insertcode.css">