Show bio on the list of blogs by specific author
-
On my blog, I’ve created an “authors” page that lists all guest bloggers by using the shortcode.
If I select one of the authors, the following url is opened: “https://BLOGNAME.com/authors/AUTHOR-NAME”. That’s exactly what I want. On that page a list of all blogs submitted by that author is shown. Also, exactly what I want.
However, I want to add a short user biography to that list of blogs. I also use the “About the Author Advanced” plugin to have a biography shown in a sidebar widget. I’ve singled out this part of code:
if($options['show_bio'] && get_the_author_meta('user_description', $theAuthorID) != null) echo '<p class="bio">'.get_the_author_meta('user_description', $theAuthorID).'</p>';
My question is: where do I put this piece of code? So: where is the broader code located that allows me to have a list shown of all the blogs contributed by a specific author?
- The topic ‘Show bio on the list of blogs by specific author’ is closed to new replies.