In letzer Zeit gab es immer wieder Personen welche, mit meinen Nicknamen in meinem Blog einen Kommentar geschrieben haben, nun habe ich folgenden PHP Code zu meiner functions.php Datei hinzugefügt ( im wp-themes Ordner des aktiven Designs ) um dies zu unterbinden. Somit wird jeder der meinen Nicknamen versucht zu benutzen, in Anonymous geändert.
[php]
/*
**change the comment author name if it contains any string that are disallowed, when saving a new comment in the database
*/
function wh_change_comment_author($commentdata)
{
if(!is_author())
{
$name_disallowed=’¥akuza112′;
$name_default=’Anonymous‘;
//the comment_author is contained in the array $commentdata
if(stristr($commentdata[‚comment_author‘],$name_disallowed)) {
$commentdata[‚comment_author‘]=$name_default; //replace the name disallowed by the default one
}
return $commentdata;
}
}
add_filter( ‚preprocess_comment‘ , ‚wh_change_comment_author‘ , ’99‘ );
[/php]