Customise Author Page?
You will need something like this in your author.php file. Taken from the Codex. http://codex.wordpress.org/Author_Templates <?php get_header(); ?> <div id=”content” class=”narrowcolumn”> <!– This sets the $curauth variable –> <?php $curauth = (isset($_GET[‘author_name’])) ? get_user_by(‘slug’, $author_name) : get_userdata(intval($author)); ?> <h2>About: <?php echo $curauth->nickname; ?></h2> <dl> <dt>Website</dt> <dd><a href=”https://wordpress.stackexchange.com/questions/157033/<?php echo $curauth->user_url; ?>”><?php echo $curauth->user_url; ?></a></dd> <dt>Profile</dt> <dd><?php … Read more