Skip to main content
Post Undeleted by Dyck
added 213 characters in body
Source Link
Dyck
  • 2.7k
  • 4
  • 23
  • 21

This removed the ability for users to post HTML (but not links for some strange reason) within comments:

add_filter( 'pre_comment_content', 'wp_specialchars' ); did

This removed the trickability for me.users to post links within comments:

remove_filter('comment_text', 'make_clickable', 9);

add_filter( 'pre_comment_content', 'wp_specialchars' ); did the trick for me.

This removed the ability for users to post HTML (but not links for some strange reason) within comments:

add_filter( 'pre_comment_content', 'wp_specialchars' );

This removed the ability for users to post links within comments:

remove_filter('comment_text', 'make_clickable', 9);

Post Deleted by Dyck
Source Link
Dyck
  • 2.7k
  • 4
  • 23
  • 21

add_filter( 'pre_comment_content', 'wp_specialchars' ); did the trick for me.