目录
介绍
the_author_posts_link() 显示作者所有文章的链接,链接的文字是作者的“公开显示名”。链接地址会链接到 作者模板 ,如果没有作者模板就会更具 模板层次结构 用其他模板来显示。该函数只能用在 the_loop 循环中。
使用
<?php the_author_posts_link(); ?>
参数
不接受任何传参。
示例
显示作者公开名,并带上链接。
<p>Other posts by <?php the_author_posts_link(); ?></p>
将显示为:
Other posts by admin
admin会有链接。
THE END
暂无评论内容