0

WordPress のコメントで HTML を無効にする方法を見つけようと、ここ数時間調査してきました。これまでのところ、これは一貫して Google 検索結果の一番上に何度も表示されていました。

// 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;

このコードは、最新バージョンの WordPress では機能しませんでした。また、機能しないコードがさらに多く見つかりました。では、WordPress 3.6 (最新バージョン) のコメントで HTML を無効にするにはどうすればよいでしょうか?

4

2 に答える 2

4

コメント内の HTML タグを無効にするには、次のコードをテーマの に追加しますfunctions.php

add_filter('comment_text', 'wp_filter_nohtml_kses');
add_filter('comment_text_rss', 'wp_filter_nohtml_kses');
add_filter('comment_excerpt', 'wp_filter_nohtml_kses');
于 2013-08-11T03:37:57.433 に答える