Par défaut, WordPress autorise certaines balises HTML dans les commentaires telles que <a> <em> <strong>etc. Si vous le remarquez, un grand nombre de commentaires indésirables contiennent également ces identifiants. La plupart des commentaires SPAM sont faits par des bots et des scripts, qui utilisent des balises HTML. Si vous désactivez simplement le HTML de vos commentaires WordPress, cela peut empêcher beaucoup de SPAM. Dans ce tutoriel, nous allons vous afficher comment vous pouvez désactiver les identifiants HTML dans vos commentaires WordPress.
Ce tutoriel désactivera uniquement les identifiants HTML activés. Ainsi, quelqu’un peut toujours publier quelque chose comme :
<a><em><strong> ;
Et cela s’affichera, mais les identifications ne seront pas fonctionnelles. Ainsi, si quelqu’un utilise l’identifiant strong, le texte ne sera pas mis en gras. En outre, peu de robots de SPAM ont le temps de faire cela, car cette méthode prend beaucoup de temps et n’est pas avantageuse pour eux.
Tout ce que vous avez à faire est simplement d’ouvrir votre functions.php et d’ajouter le code suivant :
// This will occur when the comment is posted function plc_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 ); } // This will occur before a comment is displayed function plc_comment_display( $comment_to_display ) { // Put the single quotes back in $comment_to_display = str_replace( ''', "'", $comment_to_display ); return $comment_to_display; }
Si vous ne voulez pas ajouter manuellement ce code vous-même, alors l’auteur/autrice original/e propose également une extension que vous pouvez télécharger. Il suffit d’installer et d’activer l’extension Literal Comments de Peter.
La raison pour laquelle cette méthode est meilleure est qu’elle requiert que vous ne modifiiez pas les fichiers du cœur. Si vous voulez modifier les fichiers du cœur, vous pouvez aller dans wp-includes/kses.php et modifier les codes qui s’y trouvent. (Ce n’est pas recommandé, mais c’est ici pour le bien de la connaissance.(Codex WP pour plus de détails)
Syed Balkhi says
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
Gwyneth Llewelyn says
Unfortunately, the Peter’s Literal Comments plugin is not active any longer; it has been updated last in 2015, and may not even work on recent versions any more. You might need to recommend a different plugin instead…
WPBeginner Support says
Thank you for letting us know that the plugin is not active a the moment. When we look at updating the article we will look for an alternative
Administrateur
KM Shariful says
What html codes I can use in comment box of wordpress site as a visitor?
WPBeginner Support says
Hi,
You can use the following HTML tags in comments by default.
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>
Administrateur
San Solanki says
Very well written article, i always follow your blog for all my wordpress problems thnks
Ekesmall says
Is not working here………anyway round??
Sandile Nxumalo says
After all these years, this still works. Thanks
carlo says
Dude, you forgot the closing tag }
WPBeginner Support says
Thanks for pointing out, we have fixed the code snippet.
Administrateur
anshu says
there are lots of commnts on my every blog post … how to disable HTML hyperlink so that i can prevent my blog post from spam
falvarez says
I think that something is missing. You should add your function plc_comment_display() to the filter stack like this:
add_filter(‘comment_text’, ‘plc_comment_display’);
Regards.
johnroypaul says
Brilliant article thanks! Seems to work perfectly well with the latest versions of wordpress as well (3.3) Made the code a lot cleaner as mentioned and seems to have made life easier when trying to implement the comments form into side areas ect. (Had a nightmare with previous use of the normal code)
wordpress hosting says
The more mature you are, the harder at risk you are for getting something undesirable happen to you while overseas. Thanks for revealing your suggestions on this blog.You have good grapes on wordpress thanks for making my problem so easy .
Kamal says
Great, by this way one can ensure that nobody drops links in the comment box. I really hate to see people doing that unnecessarily.
shoaib hussain says
Nice piece of code,but if you happen to use thesis like I am,only needs to check a radio button and the html code vanishes.
Editorial Staff says
Yes you are right, but we are not supporting Thesis on this site because it is not compatible with the GPL License.
Administrateur
Cruz3N says
Its confused me Bro, but i make some simple plugin that allow you to replace with > ;
<?php
/*
Plugin Name: Filter Comments
Plugin URI: http://cruzenaldo.com/plugin-sederhana-filter-komentar/
Description: Plugin sederhana untuk melakukan filterisasi terhadap komentar dan mencegah user menginput tag – tag HTML
Author: Cruz3N
Author URI: http://www.cruzenaldo.com/
Version: 1.0
*/
function my_function ($text) {
$text = str_replace('’, ‘> ;’, $text);
return $text;
}
add_filter(‘comment_text’, ‘my_function’);
?>
You can modification that better… Hope usefull
Download here
http://www.box.net/shared/rgb4lmt5uy
And this is my ugly blog :p
http://cruzenaldo.com/
Best Regard
Cruz3N
Infographiste says
Thank you for the useful tuto and easy to follow. I’ve found another one explaining how to disable HTML but was to hard and badly explained, anyway thanks again and have a great week end
michelle says
this great and should help to block out loads of spam thanks
Blogger Pemula says
Thanks for the Great Tips.
Is it affecting commentluv plugin?
Editorial Staff says
Haven’t tried yet, but don’t think it should.
Administrateur
Ms. Freeman says
This will be of great help from those spam bots that try to leave comments with twenty or so links…LOL:) Thanks
Jad Limcaco says
Thanks! Didn’t know how to do this before.