如何替換WordPress評(píng)價(jià)中的(敏感)關(guān)鍵詞
來源:程序員人生 發(fā)布時(shí)間:2014-04-27 06:47:50 閱讀次數(shù):2796次
如何替換WordPress評(píng)價(jià)中的(敏感)關(guān)鍵詞
有時(shí)候訪客的評(píng)論中含有不雅的詞匯,這讓你的博客看上去不那么美,或者有些詞比較敏感,最好給過濾掉,或者你想讓有些詞特定顯示成你喜歡的字詞,讓博客比較有趣。這時(shí)你就可以使用下面這段代碼,讓你在評(píng)論中替換一些關(guān)鍵詞。
add_filter( 'pre_comment_content', 'wps_filter_comment' );
function wps_filter_comment($comment) {
$replace = array(
// 'WORD TO REPLACE' => 'REPLACE WORD WITH THIS'
'foobar' => '*****',
'hate' => 'love',
'zoom' => '<a href="http://zoom.com">zoom</a>'
);
$comment = str_replace(array_keys($replace), $replace, $comment);
return $comment;
}