函数描述
通过指定 ID 获取作者页面的 URL。
使用方法
<?php get_author_posts_url( $author_id, $author_nicename ); ?>
参数
- $author_id
- (
integer) (
required) 想要获取URL的作者 ID。 - 默认:
None
- $author_nicename
- (
string) (
optional) 作者的昵称- 默认: empty
返回值
- (string)
- 作者页面的URL
使用示例
显示当前文章的作者页面的链接。
<a href="<?php%20echo%20get_author_posts_url(%20get_the_author_meta(%20'ID'%20)%20); ?>"><?php the_author(); ?></a>