OctoberCMS/WinterCMS修改Blog插件中的编辑器
WinterCMS的BLOG插件默认编辑器是Markdown的,对于普通用户来说非常不友好,如果修改为富文本编辑器可以通过以下操作来实现
修改文件 /plugins/rainlab/blog/controllers/Posts.php
找到
$widget->secondaryTabs['fields']['content']['type'] = 'RainLab\Blog\FormWidgets\MLBlogMarkdown';
修改为
$widget->secondaryTabs['fields']['content']['type'] = 'richeditor';
最后刷新页面