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で同じ作者の関連記事を表示する方法をご紹介します。

Displaying related posts by same author in WordPress

なぜWordPressで投稿者別に関連投稿を表示するのか?

WordPressで関連投稿を追加することで、訪問者が新しいコンテンツを見つけやすくなり、訪問者の興味を引きつけ、直帰率を下げながらページビューを増やすことができます。

しかし、複数著者のWordPressブログを運営している場合、訪問者は特定の著者の投稿をもっと読みたいと思うかもしれません。同じ著者が書いた投稿を表示すれば、訪問者を長くサイトにとどめ、読者体験を向上させることができる。

Related posts by author displayed manually in WordPress

ということで、WordPressで同じ投稿者の関連投稿を表示する方法を見てみよう。

WordPressで同じ投稿者の投稿を表示する(簡単な方法)

同じ投稿者による関連投稿のリストを表示する最も簡単な方法は、WordPressサイトにカスタムコードを追加することである。この目的のためにプラグインを探してみたが、見つかったものはあまりにも時代遅れだった。

サイトのfunctions.phpファイルを編集してカスタマイザーのコードを追加するようガイドに書かれていることがあります。しかし、コードの小さなミスやタイプミスがWordPressの一般的なエラーを引き起こしたり、サイトを完全に壊してしまう可能性があるため、この方法はお勧めしません。

そこでWPCodeの出番だ。

WPCodeは、WordPressウェブサイトにカスタムPHP、CSS、HTMLなどを安全に追加できる最高のコードスニペットプラグインです。また、カスタマイズを失うことなくWordPressテーマを更新することができます。

WPCodeでは、同じ作者による関連記事を表示するだけでなく、カスタムコードを追加してランダム投稿を表示したり、投稿ループから付箋投稿を除外したりすることもできます。

まず、無料のWPCodeプラグインをインストールし、有効化する必要があります。詳しい手順は、WordPressプラグインのインストール方法についての初心者ガイドをご覧ください。

有効化したら、Code Snippets ” + Add Snippetにアクセスしてください。

Adding custom code to a WordPress blog or website

ここでは、あなたのウェブサイトに追加できるすべての既製のスニペットが表示されます。

スニペットを作成するには、「カスタムコードを追加」にマウスオーバーし、「スニペットを使用」を選択するだけです。

Displaying related posts using custom code and WPCode

カスタムスニペットの作成」ページが表示されますので、まずはコードタイプ名を入力してください。これは参考用なので、好きな名前を使ってください。

その後、’Code Type’ドロップダウンを開き、’PHP Snippet’を選択する。

How to display related posts by same author using WPCode

次のスニペットをコードエディターに貼り付けてください:

function wpb_related_author_posts($content) {
    if (is_single()) {
        global $authordata, $post;
        
        // Fetch the author's display name
        $author_name = get_the_author_meta('display_name', $authordata->ID);
        
        // Insert the author's name into the string
        $content .= '<h4>Similar Posts by ' . $author_name . ':</h4> ';
      
        $authors_posts = get_posts(array(
            'author' => $authordata->ID,
            'post__not_in' => array($post->ID),
            'posts_per_page' => 5
        ));
      
        $content .= '<ul>';
        foreach ($authors_posts as $authors_post) {
            $content .= '<li><a href="' . get_permalink($authors_post->ID) . '">' . apply_filters('the_title', $authors_post->post_title, $authors_post->ID) . '</a></li>';
        }
        $content .= '</ul>';
      
        return $content;
    } else {
        return $content;
    }
}

add_filter('the_content', 'wpb_related_author_posts');

このコードはページが個別投稿かどうかをチェックし、もしそうなら投稿者の情報を取得する。

そして、投稿コンテンツの下に’Similar posts by (author name)’という見出しと、同じ投稿者による最大5つの類似投稿(現在の投稿を除く)を表示します。また、この関数は個別投稿テンプレート上でコードを実行するようWordPressに指示します。

その後、「インサーター」セクションまでスクロールダウンする。

すでに選択されていない場合は、「自動インサーター」を選択します。次に、ドロップダウンメニューを開き、「Run Everywhere」を選択すると、関連投稿がWordPressサイト全体に表示されます。

Adding related posts across your WordPress website

その後、画面を一番上までスクロールし、「Inactive」トグルをクリックして「Active」に変更します。

最後に「Save Snippet」をクリックして、PHPスニペットをライブにする。

Clicking Save Snippet in WPCode

これで、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

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

  1. L Waterfield

    Apologies for opening this up again after all these years, but could you tell me how to place this related posts content somewhere other than “after entry content”? E.g. If I wanted it to appear after the author info or after the comments section? Thank you!

    • WPBeginner Support

      If you wanted to customize the specific location it appears then you would need to change ‘the_content’ to where you would like to add the content

      管理者

  2. azad

    How can Display Related Product by the Same Author in Wp sidebar

    • WPBeginner Support

      You would want to reach out to the support for the ecommerce plugin you are using for how to set that up.

      管理者

  3. Alex

    Great, Thank you for your article!
    is it possible to get same data from CPT?

    • WPBeginner Support

      To do that you would want to add to the array of arguments to include the post type. For line 8 you would want it to be:

      $authors_posts = get_posts( array( ‘post_type’ => ‘book’, ‘author’ => $authordata->ID, ‘post__not_in’ => array( $post->ID ), ‘posts_per_page’ => 5 ) );

      Replace book with your custom post type

      管理者

      • Alex

        Great! thank you!

        • WPBeginner Support

          You’re welcome :)

  4. Ryan Caswell

    Hi there, the code works great but is there any way to include the post featured image thumb too? This would be so amazing!

      • Ryan Caswell

        Great thanks! Sorry I am not much of PHP developer. Where would it go into the code to have it display? Thanks so much!

  5. Trishah Woolley

    Yes that works. Thanks!

    And I found and fixed another issue… If the author only has one post the Related Posts area shows but there is no information in it. To solve this, I did the following. And I also added a div around the content in order to style the area.

    // Related Author Posts
    
    function wpb_related_author_posts($content) {
    
        global $authordata, $post;
    
        $authors_posts = get_posts( array( 'author' => $authordata->ID, 'post__not_in' => array( $post->ID ), 'posts_per_page' => 5 ) );
    
    if ( is_single() && (count($authors_posts) > 1 ) ) {
    
        $content .= '<div class="similar_posts"><h3>Similar Posts by The Author:</h3> ';
    
        $content .= '<ul>';
        foreach ( $authors_posts as $authors_post ) {
            $content .= '<li><a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a></li>';
        }
        $content .= '</ul></div>';
    
        return $content;
        }
        else {
        return $content;
        }
    }
    
    add_filter('the_content','wpb_related_author_posts');
    
  6. Trishah Woolley

    I’m testing the above functions.php code on a development site. The related posts are showing up on the bottom of pages also, like the contact us page. As you are using is_single this shouldn’t be happening. Do you have any insight on why this is happening?

    • WPBeginner Support

      Hi Trishah,

      Thanks for reporting this. There was a tiny error in the code that caused this. We have fixed the error, you can now try the new code snippet.

      管理者

返信を残す

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