web-dev-qa-db-ja.com

挿入メディアモーダルでデータ属性のカスタム入力を追加する

画像の親アンカーにhtml5 data-属性を追加できることを期待して、「メディアの挿入」モーダルにテキスト入力を追加しようとしています。

<a class="fancybox" href="..." data-fancybox-group=" "> < - この部分
<img class="wp-image-871" src="..." alt="..." width="245" height="333" />
</a>

これまでのところ、モーダルに入力を追加することができました。

enter image description here

私のfunctions.phpファイルで以下のコードを使用する:

function add_fancybox_input( $form_fields, $post ) {
$form_fields['fancyboxGroup'] = array(
'label' => 'fancybox group',
'input' => 'text',
'value' => 'testing',
'helps' => 'use this to group images in fancybox',
);
return $form_fields;
}

add_filter( 'attachment_fields_to_edit', 'add_fancybox_input', 10, 2 );

そしてdata-fancybox-group=""をアンカーに追加しました:

function give_linked_images_class($html, $id, $caption, $title, $align, $url, $size, $alt = '' ){
  $classes = 'fancybox'; // separated by spaces, e.g. 'img image-link'

  // check if there are already classes assigned to the anchor
  if ( preg_match('/<a.*? class=".*?">/', $html) ) {
    $html = preg_replace('/(<a.*? class=".*?)(".*?>)/', '$1 ' . $classes . '$2', $html);
  } else {
    $html = preg_replace('/(<a.*?)>/', '$1 class="' . $classes . '" data-fancybox-group="" >', $html);
  }
  return $html;
}
add_filter('image_send_to_editor','give_linked_images_class',10,8);

これは私が行き詰まっているところです...私はデータを入力する場所があり、データを移動する場所がありますが、入力からデータにデータを取得する方法がわかりません-fancybox-group属性.

8
apaul

私はソースを調べましたが、残念ながら、保存せずに情報を渡すための素晴らしい方法を見たことがありません。これは本当に大事なことですが、これは実際に保存する必要があるものではないためです。

この問題を回避するには、 PHP Sessionsfunctions.phpの先頭に配置してください。

    if (!session_id()) {
        session_start();
    }

これで$_SESSION変数を使うことができます。

    $_SESSION[ 'your-key' ] = 'your-value';

このようにフォームフィールドを作成します。

    function wpse_154330_attachment_fields_to_edit( $form_fields, $post ) {
        $current_screen = get_current_screen();
        // we are not saving, so no need to show the field on the attachment page
        if ( $current_screen->id == 'attachment' ) {
            return $form_fields;
        }
        $form_fields['fancyboxGroup'] = array(
            'label' => 'fancybox group',
            'input' => 'text',
            'value' => '', // leave the value empty
            'helps' => 'use this to group images in fancybox',
        );
        return $form_fields;
    }
    add_filter(
        'attachment_fields_to_edit',
        'wpse_154330_attachment_fields_to_edit',
        10,
        2
    );

このようにセッション変数を使用してください。

    function wpse154330_save_attachment_field( $post, $attachment ) {
        // we're only setting up the variable, not changing anything else
        if ( isset( $attachment[ 'fancyboxGroup' ] ) {
            $_SESSION[ 'fancyboxGroup' ] = $attachment[ 'fancyboxGroup' ];
        }
        return $post;
    }
    add_filter(
        'attachment_fields_to_save',
        'wpse154330_save_attachment_field',
        10,
        2
    );

それに応じて出力を変更します。

    function wpse154330_image_send_to_editor(
        $html,
        $id,
        $caption,
        $title,
        $align,
        $url,
        $size,
        $alt = ''
    ) {
        // no need to modify the output, if no fancybox group is given
        if (
            empty( $_SESSION[ 'fancyboxGroup' ] )
            || ! isset( $_SESSION[ 'fancyboxGroup' ] )
        ) {
            return $html;
        }
        $classes = 'fancybox';
        if ( preg_match( '/<a.*? class=".*?">/', $html ) ) {
            $html = preg_replace(
                '/(<a.*? class=".*?)(".*?>)/',
                '$1 ' . $classes . '$2',
                $html
            );
        } else {
            $html = preg_replace(
                '/(<a.*?)>/',
                '$1 class="'
                    . $classes
                    . '" data-fancybox-group="'
                    . $_SESSION[ 'fancyboxGroup' ]
                    . '" >',
                $html
            );
        }
        unset( $_SESSION[ 'fancyboxGroup' ] );
        return $html;
    }
    add_filter(
        'image_send_to_editor',
        'wpse154330_image_send_to_editor',
        10,
        8
    );

それについてだ。ほとんど自己説明的であるべきです、そうでなければただ尋ねなさい。

3
Nicolai

get_post_metaを使ってフィールドを引っ張ることができるはずです。

function give_linked_images_class($html, $id, $caption, $title, $align, $url, $size, $alt = '' ){
  $classes = 'fancybox'; // separated by spaces, e.g. 'img image-link'

  // check if there are already classes assigned to the anchor
  if ( preg_match('/<a.*? class=".*?">/', $html) ) {
    $html = preg_replace('/(<a.*? class=".*?)(".*?>)/', '$1 ' . $classes . '$2', $html);
  } else {
    $html = preg_replace('/(<a.*?)>/', '$1 class="' . $classes . '" data-fancybox-group="'.get_post_meta($id, 'fancyboxGroup', true).'" >', $html);
  }
  return $html;
}
add_filter('image_send_to_editor','give_linked_images_class',10,8);

また、まだ追加していない場合は、追加したフィールドを保存するためにattachment_fields_to_saveフィルタにフックする必要があります。

function wpse154330_save_attachment_field($post, $attachment) {
    if( isset($attachment['fancyboxGroup']) ){
            update_post_meta($post['ID'], 'fancyboxGroup', $attachment['fancyboxGroup']);
        }

    return $post;
}

add_filter( 'attachment_fields_to_save','wpse154330_save_attachment_field', 10, 2);

add_fancybox_input関数も更新する必要があります。値を変更して、ファンシーボックスフィールドを引っ張ります。

function add_fancybox_input( $form_fields, $post ) {
$form_fields['fancyboxGroup'] = array(
'label' => 'fancybox group',
'input' => 'text',
'value' => get_post_meta($post->ID, 'fancyboxGroup', true),
'helps' => 'use this to group images in fancybox',
);
return $form_fields;
}
add_filter( 'attachment_fields_to_edit', 'add_fancybox_input', 10, 2 );
3
nothingtosee

これがあなたにとって最良のものかどうかはわかりませんが、試してみることができると思います。

入力フィールドからデータを取得し、それを隠し入力などのフォームに配置して、メディア選択のウィンドウが閉じるときにdata属性を設定します。

$inputValue = $('.some_class').val();
$('.fancybox').data('fancybox-group', $inputValue);

私はこれがクレイジーに聞こえることを知っていますが、それはあなたにとって非常に単純かもしれません、そしてそれはトリックをするかもしれません。

0
Marius Talagiu