如何添加contenteditable属性并在我的帖子/页面上保存内容编辑状态?

时间:2017-07-15 07:41:02

标签: wordpress frontend contenteditable savechanges

我正在制作我的WordPress主题,我想做的是使用前端编辑手段编辑页面

我必须使用这行代码在我的帖子/页面上创建一个按钮我自己的自定义按钮命名前编辑器

add_action('media_buttons', 'add_my_custom_button');

function add_my_custom_button(){
    $post = get_the_id();    
    echo '<a href="'.get_the_permalink().'" class="button button-primary">Front Editor</a>';
}

现在我想做什么

  1. 点击此按钮,按钮进入帖子/页面链接我想将contenteditable添加到true并保存按钮,以便用户可以编辑他/她可以更改文本内容的页面

  2. 想要保存更改。

  3. 这是我的按钮

    的屏幕截图

    enter image description here

    我怎样才能实现这一目标?

0 个答案:

没有答案