wordpress自定义评论表单

时间:2012-01-03 11:39:34

标签: php html forms wordpress field

我有一个问题,我想以评论形式插入,为每个人字段div。 我写这段代码:

<?php comment_form(
$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><div id="end-contenuto-post"></div>',
'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>',
'title_reply'=>'Lascia un commento',
'comment_notes_before' => '<p class="comment-notes">I campi contrassegnati da  <span class="required">*</span> sono obbligatori</p>',
)); ?>

错误发生在'author'字段中:

<div id="end-contenuto-post"></div>

这个html没有输出......为什么?

2 个答案:

答案 0 :(得分:0)

您是否声明了这些变量,

$commenter = wp_get_current_commenter();
$req = get_option( 'require_name_email' );
$aria_req = ( $req ? " aria-required='true'" : '' );

答案 1 :(得分:0)

当它告诉您将数组作为参数传递时,您不会执行 $ fields = array(..),而只需使用数组(..)或在comment_form()函数之外定义数组,然后将其作为参数传递。

请查看documentationthis tutorial