Ive put a great amount of effort into making sure the?comment system on this blog is fast?and feature-filled. ?The comment system is AJAX-based so you dont need to worry about page refreshes. ?You can also post links to GitHub gists, CodeP
I’ve put a great amount of effort into making sure the?comment system on this blog is fast?and feature-filled. ?The comment system is AJAX-based so you don’t need to worry about page refreshes. ?You can also post links to GitHub gists, CodePen pens, and JSFiddle fiddles and see them rendered within the comment. ?Those tasks I accomplish?after a comment has been registered in the?system. ?But what if you want to?modify comment content before it is processed, and subsequently marked as SPAM or scrubbed? ?That’s super easy with WordPress hooks!
The PHP
The <code>preprocess_comment hook allows us to get at the comment data before it is processed. ?Here is how I use this hook, wrapping?<code>`text` strings in <code><code> elements and encoding angle characters in <code><pre class="brush:php;toolbar:false"></pre>?elements:
// Manage comment submissions function preprocess_new_comment($commentdata) { // Replace `code` with code $commentdata['comment_content'] = preg_replace("/`(.*)`/Um", "$1", $commentdata['comment_content']); // Ensure that code inside pre's is allowed preg_match_all("/(.*)/", $commentdata['comment_content'], $pre_matches); // $2 foreach($pre_matches as $match) { $immediate_match = str_replace(array(''), array(''), $match[2]); $commentdata['comment_content'] = str_replace($match[2], $immediate_match, $commentdata['comment_content']); } // Return return $commentdata; } add_action('preprocess_comment', 'preprocess_new_comment');
This snippet?should be added to functions.php, as you would expect of a WordPress theme enhancement.
I love the WordPress hook system — it makes the CMS incredibly powerful and?customizable. ?I also use this hook to prevent WordPress comment SPAM. ?And since many users place HTML code in my comments, it’s important?I encode those angle characters properly. ?In the end, you never know what your user will submit and what each site will accept — use this?WordPress hook to take control!
Read the full article at: Preprocess Comment Content in WordPress

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Linux new version
SublimeText3 Linux latest version

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)
