Nature Theme - Author Box

Latest Reply from Dave at 2014-07-23 04:32:22
I am using the Nature Theme on my Blog and I have also installed Fancier Author Box. However the problem is that I was not able to find a way to display author box on posts.

Can someone show me what would be the easiest solution to my problem?
Hi!
Our theme doesn't support this feature, but you can add the code:
echo get_the_author();

to the file theloop.php. For example, you can replace the following string:
Posted in &nbsp;<?php the_category(', '); 

with
Posted in &nbsp;   <?php the_category(', '); echo( ' by ' ); echo get_the_author();

in the file theloop.php to fix this.
What if I would like to add a link to all author's posts or a profile page?
Could you clarify your question?

Leave a reply

Add codeAdd image