Вы когда-нибудь увидели в вашей папке Спам, сколько комментариев, у которых присутствуют HTML коды, с ссылками. Большинство спамеров добавляют ссылки. Но вы можете отключить HTML в комментариях WordPress, чтобы быть функциональным. Так что если кто-то не использует код, он будет выделятся жирным шрифтом текст и т.д.
Все , что вам нужно сделать , это просто открыть файл functions.php и добавить следующий код:
// This will occur when the comment is posted function andreyex_comment_post( $incoming_comment ) { // convert everything in a comment to display literally $incoming_comment['comment_content'] = htmlspecialchars($incoming_comment['comment_content']); // the one exception is single quotes, which cannot be #039; because WordPress marks it as spam $incoming_comment['comment_content'] = str_replace( "'", ''', $incoming_comment['comment_content'] ); return( $incoming_comment ); } add_filter('preprocess_comment', 'andreyex_comment_post', '', 1); // This will occur before a comment is displayed function andreyex_comment_display( $comment_to_display ) { // Put the single quotes back in $comment_to_display = str_replace( ''', "'", $comment_to_display ); return $comment_to_display; } add_filter( 'preprocess_comment', 'andreyex_comment_post', '', 1 ); add_filter( 'comment_text', 'andreyex_comment_display', '', 1 ); add_filter( 'comment_text_rss', 'andreyex_comment_display', '', 1 ); add_filter( 'comment_excerpt', 'andreyex_comment_display', '', 1 ); // This stops WordPress from trying to automatically make hyperlinks on text: remove_filter( 'comment_text', 'make_clickable', 9 );