get_profile

函数
get_profile ( $field, $user = false )
参数
  • (string) $field User meta field.
    Required:
  • (false|int) $user Optional. User ID to retrieve the field for. Default false (current user).
    Required:
    Default: false
返回值
  • (string) The author's field from the current author's DB object.
相关
  • get_the_author_meta()
定义位置
相关方法
get_roleget_post_fieldget_edit_profile_urlget_plugin_filesget_file_data
引入
1.5.0
弃用
3.0.0

get_profile函数是一个WordPress函数,用于检索特定用户的用户资料字段: 这个函数以用户ID为参数,返回一个用户配置文件字段的数组。

根据字段检索用户数据。

function get_profile( $field, $user = false ) {
	_deprecated_function( __FUNCTION__, '3.0.0', 'get_the_author_meta()' );
	if ( $user ) {
		$user = get_user_by( 'login', $user );
		$user = $user->ID;
	}
	return get_the_author_meta( $field, $user );
}

常见问题

FAQs
查看更多 >