详情见图片:
base.prototype.pre_edit_button = function() {
var _this = this;
return jQuery('<button>', {
'class': 'fee-hover-edit',
'html': FrontEndEditor.data.edit_text,
'click': function(ev) {
_this.last_mouse_pos = ev.pageY;
return _this.start_editing();
}
});
要重定向的网址(后端页面编辑):wp-admin/edit.php?post_type=page
我的蹩脚尝试:
}, base.prototype.edit_button = function () {
var _this = this;
return jQuery("<?php edit_post_link( __( 'Full Edit',) ?> ", {
})
我对 PHP/jQuery/Javascript 一无所知,它没有显示任何内容,但至少脚本一直在运行
笔记:
edit_post_link
是一个 wordpress 功能,它重定向到当前页面的完整编辑。我不会使用它,我只会尝试重定向到上面提到的那个 url。