Close

Remove website from comments wordpress

Insert the following code in the functions.php

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