将typecho文章信息中的作者链接修改成作者个人主页
效果一:用户呢称链接为用户个人主页
<a href="<?php $this->author->url(); ?>" target="_blank"><?php $this->author(); ?></a>
效果二:用户头像链接为用户个人主页
<a href="<?php $this->author->url(); ?>" target="_blank"><?php $this->author->gravatar('43') ?></a>