検索キーワードをハイライト(だけ)させるプラグインはありますが、都合がいいキーワードをいつもハイライト(だけ)させる事はできないかと探してみました。
次のプラグインをインストール
comment-moderation-highlighter
モジュールを編集
comment-moderation-highlighter/comment-moderation-highlighter.php
24行
add_filter(‘comment_text’, ‘cmh_moderate_comment’, 99);
↓
add_filter(‘the_content’, ‘cmh_moderate_comment’, 99);
135行
if ($pagenow !== ‘edit-comments.php’) { return $commentdata; }
↓
if ($pagenow !== ‘index.php’) { return $commentdata; }
セッティングでハイライトさせたいキーワードを入れる。
テスト