ギャラリーのメディアマネージャーの強化


29

WordPress 3.5以降のギャラリービューでメディアエディターを強化したいと思います。
右側に新しい選択フィールドを追加し、選択した値をギャラリーのショートコードに送信します。

ここに画像の説明を入力してください

私が思うに、機能wp.media.galleryでは、wp-includes/js/media-editor.jsギャラリーショートを挿入するデフォルトの関数です。

新しいパラメーターを追加したいのですが、パラメーターの値はMedia Manager内の選択フィールドから取得されます。

特にこの質問から、さまざまなソースで遊んだことがありますが、Backboneは私にとって非常に新しいものであり、どのように機能するのかわかりません。私もフックprint_media_templatesで遊んだことがありますが、メディアビューでは結果がありません。

どのフックを使用すればよいですか?

回答:


21

ソリューションを作成するためのプラグインなどの小さなソース。最初のphp部分には、Media Manager内のボタンのjavascriptが含まれています。より使いやすい答えですが、@ One Trick Ponyの答えは、正しい方向とJSソリューションを作成することでした。

結果を画像で見る: ここに画像の説明を入力してください

サイズがデフォルトのサイズではない場合、結果のショートコード: ここに画像の説明を入力してください

フックprint_media_templatesは、ボタン、マークアップを含めるのに適した場所です。また、スクリプトをキューに追加しましたが、コントロールを追加するためのソリューションがあります。

class Custom_Gallery_Setting {
    /**
     * Stores the class instance.
     *
     * @var Custom_Gallery_Setting
     */
    private static $instance = null;


    /**
     * Returns the instance of this class.
     *
     * It's a singleton class.
     *
     * @return Custom_Gallery_Setting The instance
     */
    public static function get_instance() {

        if ( ! self::$instance )
            self::$instance = new self;

        return self::$instance;
    }

    /**
     * Initialises the plugin.
     */
    public function init_plugin() {

        $this->init_hooks();
    }

    /**
     * Initialises the WP actions.
     *  - admin_print_scripts
     */
    private function init_hooks() {

        add_action( 'wp_enqueue_media', array( $this, 'wp_enqueue_media' ) );
        add_action( 'print_media_templates', array( $this, 'print_media_templates' ) );
    }


    /**
     * Enqueues the script.
     */
    public function wp_enqueue_media() {

        if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
            return;

        wp_enqueue_script(
            'custom-gallery-settings',
            plugins_url( 'js/custom-gallery-setting.js', __FILE__ ),
            array( 'media-views' )
        );

    }

    /**
     * Outputs the view template with the custom setting.
     */
    public function print_media_templates() {

        if ( ! isset( get_current_screen()->id ) || get_current_screen()->base != 'post' )
            return;

        ?>
        <script type="text/html" id="tmpl-custom-gallery-setting">
            <label class="setting">
                <span>Size</span>
                <select class="type" name="size" data-setting="size">
                    <?php

                    $sizes = apply_filters( 'image_size_names_choose', array(
                        'thumbnail' => __( 'Thumbnail' ),
                        'medium'    => __( 'Medium' ),
                        'large'     => __( 'Large' ),
                        'full'      => __( 'Full Size' ),
                    ) );

                    foreach ( $sizes as $value => $name ) { ?>
                        <option value="<?php echo esc_attr( $value ); ?>" <?php selected( $value, 'thumbnail' ); ?>>
                            <?php echo esc_html( $name ); ?>
                        </option>
                    <?php } ?>
                </select>
            </label>
        </script>
        <?php
    }

}

// Put your hands up...
add_action( 'admin_init', array( Custom_Gallery_Setting::get_instance(), 'init_plugin' ), 20 );

次のソースはjavascript、phpのサンプルソースではファイル custom-gallery-setting.js

/**
 * Custom Gallery Setting
 */
( function( $ ) {
    var media = wp.media;

    // Wrap the render() function to append controls
    media.view.Settings.Gallery = media.view.Settings.Gallery.extend({
        render: function() {
            media.view.Settings.prototype.render.apply( this, arguments );

            // Append the custom template
            this.$el.append( media.template( 'custom-gallery-setting' ) );

            // Save the setting
            media.gallery.defaults.size = 'thumbnail';
            this.update.apply( this, ['size'] );
            return this;
        }
    } );
} )( jQuery );

4
ブラボー!と思われるワードプレスの開発は、@OneTrickPonyは再び彼の魔法の袋のトリックの別のものを明らかにしない方法、両方への賛辞を)そして、コア開発者よりも速い速度で新しいメディアライブラリについての知識ベースを構築しています!
ブラソフィロ

素晴らしい。追加の質問:ショートコードのデフォルト属性を抑制する簡単な方法はありますか?そう[gallery type="thumbnail" ids="1,2"]なりましたか[gallery ids="1,2"]?オプションでギャラリーをスライドショーに変えるプラグインのカスタム属性を追加しています。通常のWPギャラリーを表示するだけの場合は、この属性を抑制したいと思います。そのため、プラグインを無効にすると、残骸が少なくなります。
kitchin

このトピックに関する新しい質問を追加するより良い方法だと思います。ここでショートコードはq / aの外にあります。
bueltge


@bueltge、カスタムフィールド関連の質問をご覧ください:wordpress.stackexchange.com/questions/265852/…
イスティアケアーメド

19

Backboneテンプレートを本当に使用したい場合、フックは正しいです。

template()ギャラリー設定ビューの関数をオーバーライドするのではなく、jQueryを使用してHTMLテンプレートを挿入します。しかし、あなたはすでにそれを知っていると思うので、Backboneバージョンを投稿します。

add_action('print_media_templates', function(){

  // define your backbone template;
  // the "tmpl-" prefix is required,
  // and your input field should have a data-setting attribute
  // matching the shortcode name
  ?>
  <script type="text/html" id="tmpl-my-custom-gallery-setting">
    <label class="setting">
      <span><?php _e('My setting'); ?></span>
      <select data-setting="my_custom_attr">
        <option value="foo"> Foo </option>
        <option value="bar"> Bar </option>        
        <option value="default_val"> Default Value </option>        
      </select>
    </label>
  </script>

  <script>

    jQuery(document).ready(function(){

      // add your shortcode attribute and its default value to the
      // gallery settings list; $.extend should work as well...
      _.extend(wp.media.gallery.defaults, {
        my_custom_attr: 'default_val'
      });

      // merge default gallery settings template with yours
      wp.media.view.Settings.Gallery = wp.media.view.Settings.Gallery.extend({
        template: function(view){
          return wp.media.template('gallery-settings')(view)
               + wp.media.template('my-custom-gallery-setting')(view);
        }
      });

    });

  </script>
  <?php

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