Reputation: 1
I've just created new website by Wordpress. Everything is in standard. when a user comment on my website they also can put a to their website.
There are a lot of competitor spam comment to link to their website. i don't know how to remove this link from comments? My dust buster website review is :http://dustbuster-review.com
Upvotes: 0
Views: 621
Reputation: 7211
You can use filter named comment_form_default_fields
. Add below code to your active theme’s functions.php file.
function disable_comment_url($fields) {
unset($fields['url']);
return $fields;
}
add_filter('comment_form_default_fields','disable_comment_url');
Upvotes: 1