0

詳細については、画像を参照してください。

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();
        }
      });

リダイレクトする URL (バックエンド ページ編集): 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 にリダイレクトしようとします。

4

0 に答える 0