get_author_link

函数
get_author_link ( $display, $author_id, $author_nicename = '' )
参数
  • (bool) $display
    Required:
  • (int) $author_id
    Required:
  • (string) $author_nicename Optional.
    Required:
    Default: (empty)
返回值
  • (string|null)
相关
  • get_author_posts_url()
定义位置
相关方法
get_the_author_linkget_author_rss_linkthe_author_linkget_author_feed_linkcomment_author_link
引入
1.2.0
弃用
2.1.0

get_author_link: 此函数返回一个给定作者的作者档案页的链接。

返回或打印到作者的文章的链接。

function get_author_link($display, $author_id, $author_nicename = '') {
	_deprecated_function( __FUNCTION__, '2.1.0', 'get_author_posts_url()' );

	$link = get_author_posts_url($author_id, $author_nicename);

	if ( $display )
		echo $link;
	return $link;
}

常见问题

FAQs
查看更多 >