wpseek.com
WordPress开发者和主题制作者的搜索引擎



the_author_posts_link › WordPress Function

Since1.2.0
已弃用n/a
the_author_posts_link ( $deprecated = '' )
参数:
  • (string) $deprecated Unused.
    Required: No
    默认: (empty)
定义在:
文档:
Change Log:
  • 4.4.0

Displays an HTML link to the author page of the current post's author.



源码

function the_author_posts_link( $deprecated = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '2.1.0' );
	}
	echo get_the_author_posts_link();
}