Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1448478

    Hi,

    I’m trying to add the author contact information to the author page. The bio is added by default, however all the social media links, website and so on are not displayed.

    Here is an example: https://cosori.bg/author/baking-for-seven-recipes/

    Thanks in advance.

    #1448518

    Hey Boyan,

    Thank you for the inquiry.

    You can add more info about the author by editing the includes > loop-about-author.php file. To display the website URL for example, you can add this code after line 86:

    $website = get_the_author_meta('user_url', $author_id);
    
        if ($website) {
            echo '<div class="author_website_url"><a href="' . esc_url($website) . '">' . esc_html($website) . '</a></div>';
        } 
    

    Best regards,
    Ismael

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.