我正在使用T5 Comment Textarea On Top-Plugin 对于comment\\u字段。我是wordpress的新手。所以我不知道,如何编辑comment\\u字段的样式或编辑标签?通常我会在我的评论中放入comment\\u表单数组。php如下所示:
\'comment_field\' => \'<p class="comment-form-comment">...\',
但这只会添加另一个文本区域。然后我尝试添加如下新过滤器:
add_filter( \'comment_form_field_comment\', \'my_comment_form_field_comment\' );
function my_comment_form_field_comment( $comment_field ) {
$comment_field = \'<div class="comment-field-wrapper">\' . $comment_field . \'</div>\';
return $comment_field;
}
。。。无更改。抱歉,似乎有点像试错。也许你可以帮我。那太好了!