comment_form()のフィールドを再配置する方法


22

カスタムフィルターを使用してフィールドを変更していますが、コメントフォームのフィールドの順序を変更する方法がわかりません。

希望の順序:

  • コメントフィールド(最初/上)
  • Eメール
  • ウェブサイト

これは私が現在使用しているコードです:

function alter_comment_form_fields($fields){
    $fields['comments'] = 'Test';
    $fields['author'] = '<p class="comment-form-author">' . '<label for="author">' . __( 'Your name, please' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
                    '<input id="author" name="author" type="text" placeholder="John Smith" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>';
    $fields['email'] = 'next';  //removes email field
    //$fields['url'] = '';  //removes website field

    return $fields;
}

add_filter('comment_form_default_fields','alter_comment_form_fields');

回答:


14

とても簡単です。textareaデフォルトのフィールド(フィルター)から取り出して'comment_form_defaults'、アクションに出力するだけ'comment_form_top'です。

<?php # -*- coding: utf-8 -*-
/**
 * Plugin Name: T5 Comment Textarea On Top
 * Description: Makes the textarea the first field of the comment form.
 * Version:     2012.04.30
 * License:     MIT
 * License URI: http://www.opensource.org/licenses/mit-license.php
 */

// We use just one function for both jobs.
add_filter( 'comment_form_defaults', 't5_move_textarea' );
add_action( 'comment_form_top', 't5_move_textarea' );

/**
 * Take the textarea code out of the default fields and print it on top.
 *
 * @param  array $input Default fields if called as filter
 * @return string|void
 */
function t5_move_textarea( $input = array () )
{
    static $textarea = '';

    if ( 'comment_form_defaults' === current_filter() )
    {
        // Copy the field to our internal variable …
        $textarea = $input['comment_field'];
        // … and remove it from the defaults array.
        $input['comment_field'] = '';
        return $input;
    }

    print apply_filters( 'comment_form_field_comment', $textarea );
}

良い解決策ですが、3つまたは4つのフィールドの順序を変更する場合はどうでしょうか。
ブラッドダルトン14

1
@BradDalton同じ:最初にすべてのフィールドの内容を削除し、次にそれらを目的の順序で印刷しますcomment_form_top
FUXIA

コードはそれ以来変わっていた場合は知っているが、4.0のために、次のようには思わないでくださいcomment_form_before_fields、その後、より良いフックをあるcomment_form_top
マーク・Kaplun

@MarkKaplun最近では、クラスの引数として目的の位置を渡します。:)
fuxia

4

トスコの答えが好きだった。ただし、カスタムテキストエリアを使用したかったため、その場合は機能しませんでした。私は同じフックを使用しましたが、機能は異なります:

add_filter( 'comment_form_defaults', 'remove_textarea' );
add_action( 'comment_form_top', 'add_textarea' );

function remove_textarea($defaults)
{
    $defaults['comment_field'] = '';
    return $defaults;
}

function add_textarea()
{
    echo '<p class="comment-form-comment"><textarea id="comment" name="comment" cols="60" rows="6" placeholder="write your comment here..." aria-required="true"></textarea></p>';
}

多くのスパム対策プラグインもテキストエリアを変更していることに注意してください。これは非常によくテストする必要があります。同様のアプローチで深刻な問題がありました。
FUXIA

4

これを達成するには、明らかに多くの方法があります。たとえば、コメントフィールドをフォームの下部に移動するには、次のようなコードを使用します。

add_filter( 'comment_form_fields', 'move_comment_field' );
function move_comment_field( $fields ) {
    $comment_field = $fields['comment'];
    unset( $fields['comment'] );
    $fields['comment'] = $comment_field;
    return $fields;
}

すべてのフィールドを再配置する場合は、すべてのフィールドの設定を解除します。それらを表示したい順序で配列に戻します。シンプルでしょ?

私のような次の初心者向けに、このページを見つけて有用な答えを見つけられないように、明確に綴りたいと思いました。


2

これを行うための正確なCSSはテーマによって異なりますが、次の1つの方法があります。

#commentform {
display:table;
width:100%;   
}

.comment-form-comment {
display: table-header-group; 
}

テーブル表示メソッドを使用すると、任意の高さのものを並べ替えることができます。

詳細:http : //tanalin.com/en/articles/css-block-order/


1
素晴らしいアイデアオットー。同様のアプローチが <BR>:フレキシボックスを使用して達成することができます#commentform { display: flex; flex-flow: column; } .comment-form-comment { order: -1; }
ブライアンウィリス

1

コメントフォームのフィールドとフィールド$fieldsはfunction の配列にありますcomment_form()。フィルタ内にフックして、配列comment_form_default_fields並べ替えることができます。

またcomment_form_defaults、フィルター内部にフックしてデフォルトを変更することもできます。配列内のすべてのデータを残しfield、カスタムフィールドで配列のみを変更します。htmlを含めます。

$ fieldsの場合のデフォルト:

      $fields =  array(
          'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
                      '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>',
          'email'  => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) .
                      '<input id="email" name="email" type="text" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',
          'url'    => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' .
                      '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>',
      );
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.