WordPress函数:get_author_posts_url 获取指定作者的文章页面URL

江河/ 2023年05月03日/ WordPress/ 浏览 928

函数原型:


get_author_posts_url( int $author_id, string $author_nicename = '' ): string


获取置顶用户ID的用户的作者页面的URL。


参数说明:


$user_id:用户ID


$author_nicename:用户 slug 。


函数源码:


function get_author_posts_url( $author_id, $author_nicename = '' ) {
	global $wp_rewrite;

	$author_id = (int) $author_id;
	$link      = $wp_rewrite->get_author_permastruct();

	if ( empty( $link ) ) {
		$file = home_url( '/' );
		$link = $file . '?author=' . $author_id;
	} else {
		if ( '' === $author_nicename ) {
			$user = get_userdata( $author_id );
			if ( ! empty( $user->user_nicename ) ) {
				$author_nicename = $user->user_nicename;
			}
		}
		$link = str_replace( '%author%', $author_nicename, $link );
		$link = home_url( user_trailingslashit( $link ) );
	}

	$link = apply_filters( 'author_link', $link, $author_id, $author_nicename );

	return $link;
}


包含钩子:


apply_filters( 'author_link', string $link, int $author_id, string $author_nicename )


使用举例:


显示当前文章作者的作者页面链接。


<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>


发表评论

暂无评论,抢个沙发...

客服 工单