Thursday, May 26, 2016

Remove Spam Links From Wordpress Comments



By default all links posted in the comments under your articles are turned by WordpPress into links.

Unfortunately, this ftures encourages spammers to post many unwanted comments in your blog.

To disable turning URLs from comments into actual links, go to your admin ar and then navigate to Apprance -> Editor.

Select the functions.p file from the right column and add the following line just above the closing p tag ( ?> ):

remove_filter('comment_text', 'make_clickable', 9);
That's it!
URLs pasted in your comments will not be turned into actual links anymore.

No comments:

Post a Comment