Reply To: Adjustments to the input form for the comment

#19301
Daniel Tara
Keymaster

Use this code to change the comment form title:

add_filter( 'comment_form_defaults', 'pinboard_replace_comment_form_title' );

function pinboard_replace_comment_form_title( $defaults ) {
	$defaults['title_reply'] = "What's on your mind?";
	return $defaults;
}

And this to remove the URL field:

add_filter( 'comment_form_default_fields', 'pinboard_remove_url_field' );

function pinboard_remove_url_field( $fields ) {
	unset( $fields['url'] );
	return $fields;
}

Code should be added to your child theme’s functions.php file.