有关详情,请参阅图片:
http://oi48.tinypic.com/564x4.jpg http://oi48.tinypic.com/564x4.jpg
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。