Sanitizing comments or escaping comment_text()
I'm creating a template for comments on my WordPress site. I noticed that a simple scriptalert(1);/script
slips through the default WP codex implementation of comments, using the comment_text()
function to display my comments. No bueno.
How can i properly sanitize and/or escape WordPress comments? The esc_html()
function, seems to do nothing in this case.