How to allow pre tag in WordPress comments?
Posted on In QAHow to allow pre tag in WordPress comments?
You can add a filter hook for pre_comment_approved
:
<?php
function filter_handler( $approved , $commentdata )
{
// inspect $commentdata to determine approval, disapproval, or spam status
return $approved;
}
add_filter( 'pre_comment_approved' , 'filter_handler' , '99', 2 );
?>
Reference: https://codex.wordpress.org/Plugin_API/Filter_Reference/pre_comment_approved