get_the_author_posts_link

函数
get_the_author_posts_link ( No parameters )
返回值
  • (string) An HTML link to the author page, or an empty string if $authordata isn't defined.
定义位置
相关方法
the_author_posts_linkget_the_author_postsget_the_author_linkget_author_rss_linkget_author_posts_url
引入
4.4.0
弃用
-

get_the_author_posts_link: 这个函数检索到文章作者的档案页的链接,链接文本是作者的名字和已发表文章的数量。它不接受任何参数,并返回一个HTML格式的链接。

检索一个指向当前文章作者页面的HTML链接。

使用get_author_posts_url()返回一个HTML格式的链接。

function get_the_author_posts_link() {
	global $authordata;
	if ( ! is_object( $authordata ) ) {
		return '';
	}

	$link = sprintf(
		'<a href="%1$s" title="%2$s" rel="author">%3$s</a>',
		esc_url( get_author_posts_url( $authordata->ID, $authordata->user_nicename ) ),
		/* translators: %s: Author's display name. */
		esc_attr( sprintf( __( 'Posts by %s' ), get_the_author() ) ),
		get_the_author()
	);

	/**
	 * Filters the link to the author page of the author of the current post.
	 *
	 * @since 2.9.0
	 *
	 * @param string $link HTML link.
	 */
	return apply_filters( 'the_author_posts_link', $link );
}

常见问题

FAQs
查看更多 >