Hi.
At the end of my posts I use this code:
Written by <?php the_author() ?>
But I want a link to the authors authorpage instead of clear text.
How do I do?
Hi.
At the end of my posts I use this code:
Written by <?php the_author() ?>
But I want a link to the authors authorpage instead of clear text.
How do I do?
Took this out of the Example from the Template Tag, the_author_ID:
<a href="/blog/index.php?author=<?php the_author_ID(); ?>">View all posts by <?php the_author_nickname(); ?></a>
Note: Change the /blog to your address.
More info:
Author_Templates
Much appreciated. Thanks man.
This topic has been closed to new replies.