函数描述
通过指定 ID 获取作者存档页面的 URL。我们可以通过此函数获取作者发表的所有文章的存档页面URL。
Usage
get_author_posts_url( $author_id, $author_nicename );
parameters
parameters | data type | Required or not | descriptive | default value |
---|---|---|---|---|
$author_id | integer (math.) | be | 作者ID | not have |
$author_nicename | string (computer science) | clogged | 作者昵称 | empty string |
return value
(string) 作者文章存档页面的URL
usage example
显示当前文章的作者页面的链接。
<a href="/en/</?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"><?php the_author(); ?></a>