Trusted WordPress tutorials, when you need them most.
Beginner’s Guide to WordPress
WPBカップ
25 Million+
Websites using our plugins
16+
Years of WordPress experience
3000+
WordPress tutorials
by experts

WordPressで投稿者のコメントをハイライトする方法

あなたのサイトのWordPress投稿日:あなたは、投稿者のコメントを強調したいですか?

WordPressブログで投稿者のコメントをハイライトすることで、エンゲージメントを高めることができます。投稿者がディスカッションに積極的に参加していることがわかると、ユーザーはコメントを残しやすくなります。

この投稿では、WordPressで投稿者のコメントを簡単にハイライトし、エンゲージメントを高める方法を紹介します。

Highting comments by an author in WordPress blog posts

WordPressで投稿者のコメントをハイライトする理由

コメントは、サイト上でユーザーのエンゲージメントを高める素晴らしい方法です。投稿にもっとコメントをつけたいのであれば、ディスカッションに積極的に参加することでそれを促すことができます。

新規WordPressブログの場合、簡単にコメントに返信し、読者とのディスカッションに参加することができます。複数の投稿者でブログを運営している場合は、投稿者にコメントする際のモデレーションを手伝ってもらうこともできます。

しかし、ほとんどのWordPressテーマはコメントを区別しておらず、同じスタイルで表示される。

Regular comments layout with no author highlighting

何気なくコメントをスクロールしている読者は、投稿者がディスカッションで提供した追加コンテンツに気づかないかもしれない。

投稿者のコメントをハイライトすることで、その点を改善し、投稿者のコメントを目立たせることができる。

ここでの最終的なゴールは、新規ユーザーにコメントへの参加を促し、最終的にニュースレターの購読やカスタマイザーになってもらうことです。

ということで、WordPressで投稿者のコメントを簡単にハイライトする方法を見てみよう。

WordPressでコメント投稿者をハイライトする

投稿者別にコメントをハイライトする最も簡単な方法は、WordPressテーマにカスタムCSSを追加することです。これにより、必要なコードを簡単に追加することができ、保存しなくてもサイト上でどのように表示されるかをライブプレビューで確認することができます。

まず、WordPress管理エリアの外観 ” カスタマイズにアクセスします。WordPressテーマカスタマイザーのインターフェースが起動します。左側のカラムにたくさんのオプションが設定され、サイトのライブプレビューが表示されます。

Theme customizer in WordPress

ここから、「Additional CSS」タブをクリックする必要があります。カスタムCSSを追加するテキストエリアが開きます。

Additional CSS tab

しかし、カスタムCSSを適用したときにどのように見えるかを確認したい。そのためには、投稿者のコメントを含むブログ投稿に移動する必要があります。

Viewing comments in Theme Customizer

コメント欄までスクロールし、左側のカスタムCSSボックスに以下のカスタムCSSを追加する。

.bypostauthor { 
background-color: #e7f8fb;
}

入力したカスタムCSSに合わせて投稿者コメントが変更されるのがすぐにわかるだろう。

Author's comment highlighted with a different background color

では、これはすべてどのように機能するのだろうか?

WordPressは、サイトのさまざまなエリアに初期設定のCSSクラスを追加します。これらのCSSクラスは、どのWordPressテーマを使用しているかに関係なく存在します。

このサンプルコードでは、投稿者によって追加されたすべてのコメントに追加される.bypostauthorCSSクラスを使用しています。

さらに目立つようにCSSスタイルを追加してみましょう。投稿者のコメントに小さな「投稿者」ラベルを追加し、投稿者のアバター画像を枠線で囲むサンプルコードです。

.bypostauthor:before { 
content:"Author";
float:right;
background-color:#FF1100;
padding:5px;
font-size:small;
font-weight:bold;
color:#FFFFFF;
}
.bypostauthor .avatar {
border:1px dotted #FF1100;
}

テストサイトではこのように表示された。

Comment author highlighted with the Author label

WordPressでユーザー権限グループ別にコメントをハイライトする

現在、多くのWordPressブログでは、コメントへの回答を担当するチームメンバーがいます。人気のあるサイトでは、投稿者、管理者、モデレーターがすべてコメントに答え、ユーザーのエンゲージメントを高めています。

投稿者ではないスタッフが追加したコメントを強調表示するには?

それを実現する簡単なハックがある。ただし、WordPressサイトにカスタムコードを追加する必要がある。もしやったことがないのであれば、ウェブ上のスニペットをWordPressに貼り付ける方法の投稿をご覧ください。

まず、テーマのfunctions.phpファイルまたはコード・スニペット・プラグインに以下のコードを追加する必要があります:

if ( ! class_exists( 'WPB_Comment_Author_Role_Label' ) ) :
class WPB_Comment_Author_Role_Label {
public function __construct() {
add_filter( 'get_comment_author', array( $this, 'wpb_get_comment_author_role' ), 10, 3 );
add_filter( 'get_comment_author_link', array( $this, 'wpb_comment_author_role' ) );
}
  
// Get comment author role 
function wpb_get_comment_author_role($author, $comment_id, $comment) { 
$authoremail = get_comment_author_email( $comment); 
// Check if user is registered
if (email_exists($authoremail)) {
$commet_user_role = get_user_by( 'email', $authoremail );
$comment_user_role = $commet_user_role->roles[0];
// HTML output to add next to comment author name
$this->comment_user_role = ' <span class="comment-author-label comment-author-label-'.$comment_user_role.'">' . ucfirst($comment_user_role) . '</span>';
} else { 
$this->comment_user_role = '';
} 
return $author;
} 
  
// Display comment author                   
function wpb_comment_author_role($author) { 
return $author .= $this->comment_user_role; 
} 
}
new WPB_Comment_Author_Role_Label;
endif;

テーマのfunctions.phpファイルを編集する代わりに、WPCodeを使ってこのコードを追加することをお勧めします。このコードスニペットプラグインを使用すると、WordPressでカスタマイザーコードを安全かつ簡単に追加できます。

WPCode

開始するには、無料のWPCodeプラグインをインストールし、有効化する必要があります。ヘルプが必要な場合は、WordPressプラグインのインストール方法のガイドを参照してください。

プラグインを有効化したら、WordPressダッシュボードからCode Snippets ” Add Snippetにアクセスします。

次に、「カスタムコードを追加(新規スニペット)」オプションにマウスオーバーし、「スニペットを使用」ボタンをクリックします。

Add a new custom code snippet in WPCode

次に、スニペットのタイトルを追加し、上記のコードを「コードプレビュー」ボックスに貼り付け、ドロップダウンメニューからコードタイプとして「PHPスニペット」を選択します。

Paste snippet into the WPCode plugin

その後、スイッチを「非有効化」から「有効化」に切り替え、ページ上部の「スニペットを保存」ボタンをクリックするだけです。

Activate and save your custom code snippet

このコードでは、コメント投稿者名の横にユーザー権限グループを追加しています。カスタマイザーなしでこのように表示されます。

User role labels added to comments

カスタムCSSを追加して、もう少しきれいにしましょう。外観 ” カスタマイズページに行き、追加CSSタブに切り替える。

その後、以下のCSSを使用して、コメントするユーザー権限グループのラベルをスタイルすることができます。

.comment-author-label {
    padding: 5px;
    font-size: 14px;
    border-radius: 3px;
}
  
.comment-author-label-editor {  
background-color:#efefef;
}
.comment-author-label-author {
background-color:#faeeee;
}
  
.comment-author-label-contributor {
background-color:#f0faee;   
}
.comment-author-label-subscriber {
background-color:#eef5fa;   
}
  
.comment-author-label-administrator { 
background-color:#fde9ff;
}

テストサイトではこのように表示されました。あなたのテーマの色やスタイルに一致するようにコードを自由に変更してください。

User role highlighted

詳しくは、WordPressのコメントにユーザー権限グループを追加する方法の投稿をご覧ください。

WordPressで投稿者のコメントをハイライトする方法について、この投稿がお役に立てば幸いです。また、WordPressでリピーターのために新しい投稿をハイライトする方法についてのチュートリアルや、WordPressで最高の著者名ボックスプラグインのエキスパートピックもご覧ください。

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

情報開示 私たちのコンテンツは読者支援型です。これは、あなたが私たちのリンクの一部をクリックした場合、私たちはコミッションを得ることができることを意味します。 WPBeginnerの資金源 をご覧ください。3$編集プロセスをご覧ください。

アバター

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi with over 16 years of experience in WordPress, Web Hosting, eCommerce, SEO, and Marketing. Started in 2009, WPBeginner is now the largest free WordPress resource site in the industry and is often referred to as the Wikipedia for WordPress.

究極のWordPressツールキット

ツールキットへの無料アクセス - すべてのプロフェッショナルが持つべきWordPress関連製品とリソースのコレクション!

Reader Interactions

20件のコメント返信を残す

  1. Rafael

    Not work for me :(

    I use custom theme with comments.php from twenty Twenty Thirteen.

    Where can I add more CSS classes ?

  2. Irfan Ali

    Thank you very much.

  3. Haina

    Hi! Whenever somenone leaves a comment on my website, the author name appears in gray. How can I change that do black? Also, a “permalink” word is always bellow the date and time of the comment . How can I get rid of that? Any help will be much appreciated. Thanks.

      • Haina

        Thanks for the quick reply. However, my understanding of CSS is less than “fair”. If you could give me direct instructions on how to get the comment author name in black, it would be great. If not, I understand also. Thanks.

  4. Martin

    How is it possible to exclude any replies to the authors comment from the styling?

  5. Peter Huan

    I tried to it but i could not. I was added to my theme opition by myself.
    May be i was changed “div”…
    Thank you for topic.

  6. Fahad

    There is a problem with changing the background if the auther is the creator of the comment and someone else replied, since the nested reply will also have the same highlighted background!

  7. deven

    Nice post … but is there any plugin for doing the same ( there are some but 2-3 yers old ) looking for a new one with more customize options.

  8. char

    Is there a way to give each author (the main ones) different color comments?

    • Editorial Staff

      Yes, it is possible to assign different color comments for registered users. The class would look like .comment-author-username. Replace username with the author’s username.

      管理者

  9. Ahmad Raza

    I followed the way you described but i have not found <li id=”comment-“> template in my comments.php
    Any solution?

  10. Gretchen Louise

    I’d love to see this tutorial updated to apply to Genesis and multi-author blogs! :)

  11. Keith Davis

    Useful tip.
    When I read post comments, I tend to read the author’s comments on the assumption that what he says carries more authority.
    I’m OK with the CSS but never sure about the php.
    You may have enticed me to start messing with the php!

  12. janghuan

    In my wordpress version,I just need to add a exist class that the wordpress generates.It’s “comment-author-admin”.Maybe the class “bypostauthor” that wordpress generates also does work.

    • Editorial Staff

      You can probably add a comma and add more user IDs, but it will show all editor’s comment in highlighted version, so yes it will be a fail if you look at it that way.

      管理者

返信を残す

コメントありがとうございます。すべてのコメントは私たちのコメントポリシーに従ってモデレートされ、あなたのメールアドレスが公開されることはありませんのでご留意ください。名前欄にキーワードを使用しないでください。個人的で有意義な会話をしましょう。