大多数字符串和表单字段可以通过$ args数组进行控制 传入函数,你也可以选择使用 comment_form_default_fields过滤器修改默认数组 字段,如果您只想添加新字段或删除单个字段。 所有字段也单独通过表单的过滤器 comment_form_field_ $ name其中$ name是数组中使用的键 字段。
以上是来自wordpress手册。但我不顺从它。任何人都可以举个例子来解释如何删除字段并添加字段。
如果我想删除comment_notes_before
。我应该怎么做?谢谢。
答案 0 :(得分:2)
function change_fields($fields) {
//remove a field
unset($fields['comment_notes_before']);
//add a field
$fields['my_field'] = '<p>My New Field HTML</p>';
//return the modified array of fields
return $fields;
}
add_filter('comment_form_default_fields','change_fields');