Emlog后台中content、excerpt实现以纯文本的形式展示的方法
最近弄一个项目,需要把Emlog后台中content、excerpt以纯文本的形式展示,特别感谢[Young小杰@杨小杰.blog],下面直接进入主题,教程如下:
1、把后台文件admin/views/add_log.php中的
<textarea id="content" name="content" style="width:845px; height:460px;"></textarea>
改为:
<input id="content" name="content" style="width:400px;" />
<textarea id="excerpt" name="excerpt" style="width:845px; height:260px;"></textarea>
改为
<input id="excerpt" name="excerpt" style="width:400px;" />
2、把后台文件admin/views/edit_log.php中的
<textarea id="content" name="content" style="width:845px; height:460px;"><?php echo $content; ?></textarea>
改为
<input id="content" name="content" value="<?php echo $content; ?>" style="width:400px;"/>
<textarea id="excerpt" name="excerpt" style="width:845px; height:260px; border:#CCCCCC solid 1px;"><?php echo $excerpt; ?></textarea>
改为:
<input id="excerpt" name="excerpt" value="<?php echo $excerpt;?>" style="width:400px;" />
3、删除文件admin/views/add_log.php、edit_log.php中的
loadEditor('content');
loadEditor('excerpt');
4、删除admin/views/js/common.js文件中的
editorMap['content'].sync();
editorMap['excerpt'].sync();
完成
原文链接:https://www.qiquanji.com/post/8827.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知