如何在Wordpress中使用CKEditor并让客户编辑内容?

时间:2017-02-18 00:18:24

标签: javascript php wordpress ckeditor

我是一名设计师,他正在编写代码,我正在尝试将CKEditor与Wordpress集成,因为我的客户可以直接在页面上编辑文本

这可以实现吗?我已经在我的Wordpress安装中安装了CKEditor,它正在运行。但它允许非登录用户更改内容。

这样的事情:

<h1>Massive inline editing</h1>
      
     <div id="container" style="border: 1px solid blue;width: 700px; display:inline-block;padding:5px;">
      
          <h1 contenteditable="true" style="border:1px solid green;">My Client Website</h1>
          
          <div style="border: 1px solid red; float: left;width: 300px;" contenteditable="true">Div that my clients can edit when logged in their Wordpress Account.            
          </div>
          
          <div style="border: 1px solid red; float: right;width: 350px;" contenteditable="false">
             div with contenteditable='false' <br><br>
             Hello <b>CKEditor</b> ...            
          </div>
                      
      </div>

http://codepen.io/oyshiu/pen/OWYKmB

0 个答案:

没有答案