To Remove URL from WordPress Comments

Add this code to the functions.php file of the active theme:

add_filter('comment_form_default_fields', 'unset_url_field');
function unset_url_field($fields){
	if(isset($fields['url']))
	unset($fields['url']);
	return $fields;
}

Leave a Comment