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

Come visualizzare i post correlati dello stesso autore in WordPress

Se gestite un blog multiautore come il nostro, sapete quanto sia importante presentare efficacemente il lavoro di ciascun autore.

Un modo che abbiamo trovato per farlo è visualizzare i post correlati dello stesso autore alla fine di ogni articolo. Questo approccio non solo aiuta i lettori a trovare più articoli di loro gradimento, ma dà anche maggiore visibilità a ciascun autore sul vostro sito.

In questo articolo vi mostreremo come visualizzare i post correlati dello stesso autore in WordPress.

Displaying related posts by same author in WordPress

Perché visualizzare i post correlati per autore in WordPress?

Aggiungendo i post correlati in WordPress, potete aiutare i visitatori a trovare nuovi contenuti, tenerli impegnati e aumentare le pagine viste riducendo la frequenza di rimbalzo.

Tuttavia, se gestite un blog WordPress con più autori, i visitatori potrebbero voler leggere più post di un autore specifico. Se mostrate i post scritti dallo stesso autore, potete trattenere i visitatori sul vostro sito più a lungo e migliorare l’esperienza dei lettori.

Related posts by author displayed manually in WordPress

Detto questo, vediamo come visualizzare i post correlati dello stesso autore in WordPress.

Visualizzare i post dello stesso autore in WordPress (metodo semplice)

Il modo più semplice per mostrare un elenco di post correlati dello stesso autore è aggiungere un codice personalizzato al vostro sito WordPress. Abbiamo provato a cercare dei plugin per questo scopo, ma quelli che abbiamo trovato sono troppo obsoleti.

A volte le guide indicano di aggiungere codice personalizzato modificando il file functions.php del sito. Tuttavia, non raccomandiamo questo metodo, poiché anche un piccolo errore o un refuso nel codice può causare errori comuni di WordPress o addirittura rompere completamente il sito.

È qui che entra in gioco WPCode.

WPCode è il miglior plugin per gli snippet di codice che consente di aggiungere in modo sicuro PHP, CSS, HTML e altro ancora al vostro sito WordPress. Potete anche aggiornare il vostro tema WordPress senza perdere la vostra personalizzazione.

Oltre a visualizzare i post correlati dello stesso autore, WPCode consente di aggiungere codice personalizzato per mostrare post casuali, escludere i post appiccicosi dal ciclo dei post e altro ancora.

Per prima cosa, è necessario installare e attivare il plugin gratuito WPCode. Per ulteriori istruzioni, consultare la nostra guida per principianti su come installare un plugin di WordPress.

Dopo l’attivazione, andare su Code Snippets ” + Add Snippet.

Adding custom code to a WordPress blog or website

Qui vengono visualizzati tutti gli snippet già pronti che è possibile aggiungere al proprio sito web.

Per creare uno snippet, è sufficiente passare il mouse su “Aggiungi il tuo codice personalizzato” e selezionare “Usa snippet”.

Displaying related posts using custom code and WPCode

Si accede così alla pagina “Crea snippet personalizzato”, dove si può iniziare a digitare un nome per il proprio snippet di codice. Questo è solo un riferimento, quindi potete usare qualsiasi cosa vogliate.

Quindi, aprire il menu a tendina “Tipo di codice” e selezionare “Snippet PHP”.

How to display related posts by same author using WPCode

Ora è possibile incollare il seguente snippet nell’editor di codice:

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');

Questo codice controlla se la pagina è un singolo post e, in caso affermativo, recupera le informazioni sull’autore.

Quindi, visualizzerà un’intestazione che dice “Post simili di (nome autore)” e fino a 5 post simili (escluso il post corrente) dello stesso autore sotto il contenuto del post. La funzione indica anche a WordPress di eseguire il codice sui modelli di post singoli.

Successivamente, scorrere fino alla sezione “Inserimento”.

Se non è già selezionato, scegliere “Inserisci automaticamente”. Quindi, aprire il menu a discesa e scegliere “Esegui ovunque”, in modo che i post correlati appaiano in tutto il sito WordPress.

Adding related posts across your WordPress website

A questo punto, siete pronti a scorrere fino alla parte superiore dello schermo e a fare clic sulla levetta “Inattivo” in modo che diventi “Attivo”.

Infine, fare clic su “Salva snippet” per rendere attivo lo snippet PHP.

Clicking Save Snippet in WPCode

Ora, se visitate un qualsiasi post sul vostro blog WordPress, vedrete una nuova sezione di post correlati.

Speriamo che questo articolo vi abbia aiutato a capire come visualizzare facilmente i post correlati dello stesso autore in WordPress. Potreste anche voler consultare la nostra guida su come visualizzare i post più popolari in base alle visualizzazioni in WordPress o le nostre scelte di esperti sui migliori plugin di post correlati per WordPress.

Se questo articolo vi è piaciuto, iscrivetevi al nostro canale YouTube per le esercitazioni video su WordPress. Potete trovarci anche su Twitter e Facebook.

Divulgazione: I nostri contenuti sono sostenuti dai lettori. Ciò significa che se cliccate su alcuni dei nostri link, potremmo guadagnare una commissione. Vedi come WPBeginner è finanziato , perché è importante e come puoi sostenerci. Ecco il nostro processo editoriale .

Avatar

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.

Il kit di strumenti WordPress definitivo

Ottenete l'accesso gratuito al nostro kit di strumenti - una raccolta di prodotti e risorse relative a WordPress che ogni professionista dovrebbe avere!

Reader Interactions

15 commentiLascia una risposta

  1. Syed Balkhi

    Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. 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

      Admin

  3. 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.

      Admin

  4. 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

      Admin

        • WPBeginner Support

          You’re welcome :)

  5. 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!

  6. 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');
    
  7. 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.

      Admin

Lascia una risposta

Grazie per aver scelto di lasciare un commento. Tenga presente che tutti i commenti sono moderati in base alle nostre politica dei commenti e il suo indirizzo e-mail NON sarà pubblicato. Si prega di NON utilizzare parole chiave nel campo del nome. Avremo una conversazione personale e significativa.