我正在为wordpress编写一个插件,在这个插件中,我在编辑器中修改了html内容,修改后,我想保存内容,但是点击发布按钮后,帖子保持不变。我尝试使用 wp.data.dispatch('core/editor').updatePost 和类似的 api,但内容仍未修改。
这是javascript:
(function($){
$('.frc_remove_origin').on('click', function(){
if(!confirm("origin text will be removed ")){
return;
}
$('.frc_trim_origin_btn').remove();
wp.data.dispatch('core/editor').savePost();
return;
})
})(jQuery);