Remove All HTML Tags From Comment Content Text In WordPress

A premium user asked how to remove links from comments which is the reason for publishing this code.

Add the following PHP code to your child themes functions file.

add_filter( 'comment_text', 'wp_filter_nohtml_kses' );

The code converts this link :

<a href="http://example.com" rel="nofollow">http://example.com</a>

Into this :

<p>http://example.com</p>

So its not clickable and the nofollow attribute has also been removed.

Was This Tutorial Helpful?

Free

$0

Access only to all free tutorials per month.



Monthly

$75

Access to 10 premium tutorials per month.


Tutorial Request


Includes code guarantee and coding support.

Yearly

$500

Access to 15 premium tutorials per month.


Monthly Tutorial Request


Includes code guarantee and priority coding support.