您可以在自定义函数中使用过滤器,通过子主题函数文件修改注释表单的默认输出。
Modify the comment form "Leave a reply" text.
add_filter( \'comment_form_defaults\', \'wpsites_modify_comment_form_title\' );
function wpsites_modify_comment_form_title( $defaults ) {
$defaults[\'title_reply\'] = __( \'Leave a Comment\' );
return $defaults;
}
Remove The Website URL Field From Comment Form
add_filter(\'comment_form_default_fields\', \'wpsites_remove_website_url_field\');
function wpsites_remove_website_url_field($fields) {
if(isset($fields[\'url\']))
unset($fields[\'url\']);
return $fields;
}