参数
- $author_id
-
(int)
(必填)
作者ID - $author_nicename
-
(string)
(可选)
作者的nicename(slug)默认值: ''
返回
(string) 指向作者页面的URL。
源码
更新日志
版本 | 描述 |
---|---|
2.1.0 | 开始引入 |
使用示例
显示当前文章作者的作者页面链接
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>" title="<?php echo esc_attr( get_the_author() ); ?>"><?php the_author(); ?></a>
大多数 get_ 函数都不是转义函数,需要转义才能安全使用。
链接到当前文章作者创建的文章存档。
$author_id = get_post_field( 'post_author', get_the_ID() ); <a href="<?php echo esc_url( get_author_posts_url( $author_id ) ); ?>"><?php the_author(); ?></a>
显示当前文章作者的作者页面链接
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a>