There are not many things that I could criticize about WordPress. However, one of the things that I would say to be a big mistake is the fact that WordPress automatically turns the urls in the comments into clickable links.
This isn’t used a lot by regular blog visitors but as it is widely used by spammers, you might want to disable this feature.
To disable automatic links in your blog’s comments, paste the following code in the functions.php of your WordPress theme:
1
remove_filter('comment_text', 'make_clickable', 9);That’s all folks!

