这对我很有用:
add_action( \'rest_api_init\', \'user_puntuacio\' );
function user_puntuacio() {
register_rest_field( \'user\', \'puntuacio\',
array(
\'get_callback\' => \'get_user_puntuacio\',
\'update_callback\' => null,
\'schema\' => null,
)
);
}
function get_user_puntuacio( $object, $field_name, $request ) {
return get_user_meta( $object[ \'id\' ], \'puntuacio\', true );
}
请注意,“puntuacio”是我想要添加的自定义用户元。