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