General Discussions
3
Posts
2
Users
0
Reactions
1,221
Views
Apr 18, 2022 9:33 am
Hi,
I would like to remove URL link (a href) when a comment is posted. Keep the text only but not with the hyperlink.
Is this possible?
2 Replies
Apr 18, 2022 9:58 am
You can use the hook code below:
remove_filter ( 'comment_text', 'make_clickable', 9) ;
This article should be helpful for you: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/
Apr 18, 2022 10:23 am
Great! it works.