カスタムフィルタを使ってフィールドを変更することはできますが、コメントフォーム内のフィールドの order を変更する方法を見つけることはできません。
ご希望の順番:
これは私が現在使用しているコードです:
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');
それはとても簡単です。あなたはtextarea
をデフォルトのフィールド - filter '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
* Author: Thomas Scholz <[email protected]>
* Author URI: http://toscho.de
* 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 );
}
私はtoschoの回答が好きでした。しかし、私はカスタムテキストエリアを使いたかったので、その場合はうまくいきませんでした。私は同じフックを使いましたが、別々の関数を使いました:
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>';
}
これを達成するには明らかにいくつかの方法があります。たとえば、コメントフィールドをフォームの一番下に移動するには、次のようなコードを使用します。
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;
}
すべてのフィールドを並べ替える場合は、すべてのフィールドの設定を解除してください。表示したい順序でそれらを配列に戻します。簡単でしょ?
私は私のような次の新人がこのページを見つけて、答えが役に立たないと思うようにそれを明示的につづりたいと思いました。
これを行うための正確なCSSはあなたのテーマに依存します、しかし、これは1つの方法です:
#commentform {
display:table;
width:100%;
}
.comment-form-comment {
display: table-header-group;
}
テーブル表示メソッドを使用すると、任意の高さのものを並べ替えることができます。
fields od commentフォームは、function comment_form()
の配列$fields
にあります。フィルタcomment_form_default_fields
と reorder 配列の中にフックすることができます。
また、フィルタ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>',
);