admin管理员组文章数量:1424936
I created two custom REST API endpoint to create/update a user metadata a get its value.
I use update_user_meta() and get_user_meta().
Both work properly, in the API where I use get_user_meta() I have the value, but when I use the native REST API of Wordpress
/users/me?context=edit
In meta object I have an empty array.
I created two custom REST API endpoint to create/update a user metadata a get its value.
I use update_user_meta() and get_user_meta().
Both work properly, in the API where I use get_user_meta() I have the value, but when I use the native REST API of Wordpress
/users/me?context=edit
In meta object I have an empty array.
Share Improve this question asked Jun 15, 2019 at 11:36 enfixenfix 1131 silver badge5 bronze badges 2- I don’t have the source to hand to check but I’d guess it only includes a whitelisted set of properties in that list. Can you find the REST controller that serves that endpoint? – Rup Commented Jun 15, 2019 at 14:04
- I don't know where is in WP source code – enfix Commented Jun 15, 2019 at 16:30
1 Answer
Reset to default 8There's a lot of stuff saved as user meta that has no business being sent over the REST API, therefore the default endpoints do not include every piece of arbitrary meta automatically. If you want a piece of meta to appear in the REST API responses you need to register it with register_meta()
, with show_in_rest
set to true
:
register_meta( 'user', 'your_meta_key_here', [ 'show_in_rest' => true ] );
本文标签: Wordpress REST API and User meta data
版权声明:本文标题:Wordpress REST API and User meta data 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745398097a2656909.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论