web-dev-qa-db-ja.com

カスタムプラグインの「メディアを追加」ボタン

私はカスタムプラグインを書いているのですが、 "Add Media"ボタンを追加したいと思います。

アップロードしたファイルからコンテンツやデータを取得するのではなく、メディアをアップロードするだけです。

このボタンを追加する方法

ありがとう

11
Pepozzo

admin /パネルにメディア追加ボタンを追加したい場合は、

あなたはwp_enqueue_media()を使う必要があります。

add_action ( 'admin_enqueue_scripts', function () {
    if (is_admin ())
        wp_enqueue_media ();
} );

その後、このjsを使用してください:

jQuery(document).ready(function() {
    var $ = jQuery;
    if ($('.set_custom_images').length > 0) {
        if ( typeof wp !== 'undefined' && wp.media && wp.media.editor) {
            $(document).on('click', '.set_custom_images', function(e) {
                e.preventDefault();
                var button = $(this);
                var id = button.prev();
                wp.media.editor.send.attachment = function(props, attachment) {
                    id.val(attachment.id);
                };
                wp.media.editor.open(button);
                return false;
            });
        }
    }
});

このHTMLを使用してください:

<p>
    <input type="number" value="" class="regular-text process_custom_images" id="process_custom_images" name="" max="" min="1" step="1">
    <button class="set_custom_images button">Set Image ID</button>
</p>
19
tiltedtimmy

番号の代わりにサムネイルのプレビューを表示する

微調整として、私はこれをやった...

数値入力を非表示に変更しました。

追加:

$imgid =(isset( $instance[ 'imgid' ] )) ? $instance[ 'imgid' ] : "";
$img    = wp_get_attachment_image_src($imgid, 'thumbnail');

そして…隠しフィールドの上。

if($img != "") {
?>
  <img src="<?= $img[0]; ?>" width="80px" /><br />
<?php 
}

それは、サムネイルの番号を表示する代わりに、ユーザー側に表示されます。

1
Rob Mackay