Wordpress 3.5の独自のプラグインでメディアアップローダーを表示する


10

新しいWordPress 3.5のMedia Uploaderにはほとんど問題がありません。画像をアップロードする独自のプラグインを作成しました。私はこのコードJSを使用しています:

<script type="text/javascript">
    var file_frame;

    jQuery('.button-secondary').live('click', function( event ){

        event.preventDefault();

        if ( file_frame ) {
            file_frame.open();
            return;
        }

        file_frame = wp.media.frames.file_frame = wp.media(
            {
                title: 'Select File',
                button: {
                    text: jQuery( this ).data( 'uploader_button_text' )
                },
                multiple: false
            }
        );

        file_frame.on('select', function() {
            attachment = file_frame.state().get('selection').first().toJSON();
            jQuery('#IMGsrc').val(attachment.url);
        });

        file_frame.open();
    });
</script>

コードは正常に動作しますが、残念ながらフォームは不完全に見えます。画像を選択しても、右側に[添付ファイルの表示設定]が表示されません。理由はわかりません。メディアにオプションを追加してみます。

displaySettings: true,
displayUserSettings: true

しかし、それも機能しません。


呼んでるのwp_enqueue_media();
Bainternet 2013年

回答:


7

アップローダーのみ

以下のサンプルコードは、編集後のページでのみ機能します。他のページでも使用する場合は、関数を含めてwp_enqueue_media()ください。次の見出しをご覧ください。

jQuery(document).ready(function($) {

  var _custom_media = true,
      _orig_send_attachment = wp.media.editor.send.attachment;

  $('.stag-metabox-table .button').click(function(e) {

    var send_attachment_bkp = wp.media.editor.send.attachment;
    var button = $(this);
    var id = button.attr('id').replace('_button', '');

    _custom_media = true;
    wp.media.editor.send.attachment = function(props, attachment) {

      if ( _custom_media ) {
        $("#"+id).val(attachment.url);
      } else {
        return _orig_send_attachment.apply( this, [props, attachment] );
      };

    }

    wp.media.editor.open(button);

    return false;
  });

  $('.add_media').on('click', function() {
    _custom_media = false;
  });

});

Media Managerの簡単な説明

  1. 最初に、関連するスクリプトを含め、コア関数を使用します。wp_enqueue_media(); 関数は、関連するすべての設定をセットアップし、メニューテキストをローカライズし、適切なすべてのJavaScriptファイルにロードします。

    を介してカスタムスクリプトを追加できwp_enqueue_script()ます。

    // Also adds a check to make sure `wp_enqueue_media` has only been called once.
    // @see: http://core.trac.wordpress.org/ticket/22843
    if ( ! did_action( 'wp_enqueue_media' ) )
        wp_enqueue_media();

    カスタムヘッダーのデフォルトスクリプトも追加します。wp_enqueue_script( 'custom-header' ); これにより、画像選択フレームが作成され、ボタンやリンクなどのインターフェース要素に結び付けられます。次に、選択した画像IDを使用して、URLまたは私たちの選択を呼び出します。これは、テーマのカスタムヘッダー画像を選択するときに使用するスクリプトと同じです。

  2. ボタンをメディアマネージャに追加します。

    <?php
    $modal_update_href = esc_url( add_query_arg( array(
        'page'     => 'my_media_manager',
        '_wpnonce' => wp_create_nonce( 'my_media_manager_options' ),
    ), admin_url( 'upload.php' ) ) );
    ?>
    
    <p>
    <a id="choose-from-library-link" href="#"
        data-update-link="<?php echo esc_attr( $modal_update_href ); ?>"
        data-choose="<?php esc_attr_e( 'Choose a Default Image' ); ?>"
        data-update="<?php esc_attr_e( 'Set as default image' ); ?>"><?php _e( 'Set default image' ); ?>
    </a> |
    </p>
  3. 最後にアクション関数を定義します。data-update-linkurlに渡す画像IDを処理するためのコードを追加する必要があります。

    // Add to the top of our data-update-link page
    if ( isset($_REQUEST['file']) ) { 
        check_admin_referer( 'my_media_manager_options' );
    
            // Process and save the image id
        $options = get_option( 'my_media_manager_options', TRUE );
        $options['default_image'] = absint( $_REQUEST['file'] );
        update_option( 'my_media_manager_options', $options );
    }

ソースとヒント:


Widgets.phpのように、管理ページの「ページ」属性は何でしょうか?
AlxVallejo 2013

現在の管理情報プラグインを使用すると、この文字列とすべてのフックが表示され、このページについて使用できます。あなたの例ではそれwidgets.phpです。
bueltge 2013

0

私もstackoverflow.comサイトに回答を掲載しました。

私はこの方法を使用して、カスタムアップローダーにメディアアップローダーを使用しています。

、メインテーマファイル(index.phpを)これらを追加します。

wp_enqueue_style('thickbox'); // call to media files in wp
wp_enqueue_script('thickbox');
wp_enqueue_script( 'media-upload'); 


// load script to admin
function wpss_admin_js() {
     $siteurl = get_option('siteurl');
     $url = $siteurl . '/wp-content/plugins/' . basename(dirname(__FILE__)) . '/js/admin_script.js';
     echo "<script type='text/javascript' src='$url'></script>"; 
}
 add_action('admin_head', 'wpss_admin_js');


ではadmin_script.jsファイル、

jQuery('#wpss_upload_image_button').click(function() {
    formfield = jQuery('#wpss_upload_image').attr('name');
    tb_show('', 'media-upload.php?type=image&amp;TB_iframe=true');
    return false;
});

window.send_to_editor = function(html) {
 imgurl = jQuery('img',html).attr('src');
 jQuery('#wpss_upload_image').val(imgurl);
 tb_remove();

 jQuery('#wpss_upload_image_thumb').html("<img height='65' src='"+imgurl+"'/>");
}

adminファイル(admin_settings.php)、

<div id="wpss_upload_image_thumb" class="wpss-file">
    <?php if(isset($record->security_image) && $record->security_image !='') { ?>
       <img src="<?php echo $record->security_image;?>"  width="65"/><?php } else {    echo $defaultImage; } ?>
</div>
<input id="wpss_upload_image" type="text" size="36" name="wpss_upload_image" value="" class="wpss_text wpss-file" />
<input id="wpss_upload_image_button" type="button" value="Upload Image" class="wpss-filebtn" />

私のブログの詳細

詳細 http://webexplorar.com/how-to-use-media-uploader-in-wordpress-custom-plugin/


その回答をこちらの回答に転送してください。そのリンクが削除された場合、ここでの答えは役に立たなくなります。
Pieter Goosen 2014年

現時点のシックボックスはとても古いと思います。
Musa Haidari 2014

0

メディアアップローダーにこのコードを使用するだけです。あなたはjqueryの応答にリンクを得ました。

<label for="upload_image">
    <input id="upload_image" type="text" size="36" name="ad_image" value="http://" /> 
    <input id="upload_image_button" class="button" type="button" value="Upload Image" />
    <br />Enter a URL or upload an image
</label>

<?php
add_action('admin_enqueue_scripts', 'my_admin_scripts');

function my_admin_scripts() {
    if (isset($_GET['page']) && $_GET['page'] == 'my_plugin_page') {
        wp_enqueue_media();
        wp_register_script('my-admin-js', WP_PLUGIN_URL.'/my-plugin/my-admin.js', array('jquery'));
        wp_enqueue_script('my-admin-js');
    }
}

?>

<script>
    jQuery(document).ready(function($){


    var custom_uploader;


    $('#upload_image_button').click(function(e) {

        e.preventDefault();

        //If the uploader object has already been created, reopen the dialog
        if (custom_uploader) {
            custom_uploader.open();
            return;
        }

        //Extend the wp.media object
        custom_uploader = wp.media.frames.file_frame = wp.media({
            title: 'Choose Image',
            button: {
                text: 'Choose Image'
            },
            multiple: true
        });

        //When a file is selected, grab the URL and set it as the text field's value
        custom_uploader.on('select', function() {
            console.log(custom_uploader.state().get('selection').toJSON());
            attachment = custom_uploader.state().get('selection').first().toJSON();
            $('#upload_image').val(attachment.url);
        });

        //Open the uploader dialog
        custom_uploader.open();

    });


});
    </script>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.