get_the_author

函数
get_the_author ( $deprecated = '' )
参数
  • (string) $deprecated Deprecated.
    Required:
    Default: (empty)
返回值
  • (string|null) The author's display name.
定义位置
相关方法
get_the_author_idget_the_author_aimget_the_author_urlget_the_author_yimget_the_author_msn
引入
1.5.0
弃用
-

get_the_author: 这个函数检索当前文章或页面作者的显示名称。它不需要任何参数,以字符串形式返回作者的名字。

检索当前文章的作者。

function get_the_author( $deprecated = '' ) {
	global $authordata;

	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '2.1.0' );
	}

	/**
	 * Filters the display name of the current post's author.
	 *
	 * @since 2.9.0
	 *
	 * @param string|null $display_name The author's display name.
	 */
	return apply_filters( 'the_author', is_object( $authordata ) ? $authordata->display_name : null );
}

常见问题

FAQs
查看更多 >