胖蒜网的博客采用了一个接口与微信小程序打通,所以在评论的时候写进去的是微信的头像,包括点赞等都与网站的进行了同步,所以在有些数据字段进行了共用,那么在调取数据的时候有些参数就需要调整,这里记录一下调用作者相关信息的操作。
作者信息
<?php $this->author() ?> //作者名称
<?php $this->author->permalink(); ?> //作者文章列表连接
<?php $this->author->url(); ?>
<?php $this->author('url'); ?> //作者主页
<?php $this->author->mail(); ?>
<?php $this->author('mail'); ?> //作者邮箱
<?php $this->author->gravatar(); ?> //作者头像
其中 $this->author->gravatar(60) 代码中,传入60,表示生成60*60大小的头像。
分类信息
<?php echo $this->category; ?> //分类缩略名
<?php $this->category(); ?> //带连接的分类名称
<?php $this->category(',', false); ?> //不带连接的分类名称
评论者信息
<?php $comments->author(); ?> //带连接的作者名
<?php $comments->author('', false); ?> //不带连接的作者名
本文属原创,转载请注明原文:https://pangsuan.com/p/typecho-calls-the-author-information.html
评论 (0)