Xóa bỏ Url web trong khung bình luận

Chèn lệnh vào function

function wpbeginner_remove_comment_url($arg) {
$arg[‘url’] = ”;
return $arg;
}
add_filter(‘comment_form_default_fields’, ‘wpbeginner_remove_comment_url’);