付费节点推荐
免费节点
节点使用教程
Clash 小火箭 v2ray节点购买
好用的梯子,海外网络,快速稳定
GoogleDescription
Gets the URL of the author page for the author with a given ID.
Usage
<?php get_author_posts_url( $author_id, $author_nicename ); ?>
Parameters
- $author_id
- (integer) (required) ID of the author whose URL should be retrieved.
- Default: None
- $author_nicename
- (string) (optional) User nicename.
- Default: empty
Return Values
- (string)
- The URL to the author's page.
Examples
Display the link of the author page for the author of the current post
<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ), get_the_author_meta( 'user_nicename' ) ); ?>"><?php the_author(); ?></a>
Source File
get_author_posts_url() can be located in wp-includes/author-template.php