Remove The WordPress Comment URL Links
August 13, 2012 by | No Comments
If you want to remove the WordPress comment url links, you can add the following code to the functions.php
function dobeweb_remove_comment_fields($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','dobeweb_remove_comment_fields');
add your site inurl:links html,inurl:/comment-add?return_url=












