kronoszx
11/14/2018 - 4:06 PM

Delete Website/Url from comment forms

<?php

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