I would like to allow certain HTML elements in my comments and have edited kses.php
directly in the past.
However, I have been hacked recently and replaced all the core WordPress files and feel I would like to avoid editing those files.
Is it possible to allow more elements via the functions.php
file?
Here is an example how to allow a commenter to insert HTML5 video into the comment. Both
<video>
and<source>
elements has two allowed attributes.preprocess_comment
filter is applied when saving the comment to the DB.See
/wp-includes/kses.php
for$allowedtags
array structure.