WP REST API – User Meta

外掛說明

Now you have no need to make additional requests to get author info from their id that is available in the default json response.
This plugin allows you to configure which user meta fields should be included in the REST API response through an easy-to-use admin interface.

Features

  • Configurable user meta fields
  • Includes avatar URL option
  • Shows user role information
  • No additional API requests needed
  • Clean implementation

Available Fields

  • Nickname
  • Description
  • User URL
  • First Name
  • Last Name
  • User Email
  • Role
  • Avatar

Example Response:
{
“id”: 1,
“title”: “Sample Post”,
“author”: 1,
“author_meta”: {
“first_name”: “John”,
“last_name”: “Doe”,
“role”: “administrator”,
“avatar”: “https://secure.gravatar.com/…”
}
}

Credits

This plugin is created by Ruhul Amin

Support

For support, please visit http://www.ruhulamin.me/

螢幕擷圖

  • Settings page under Settings -> REST User Meta
  • Example of REST API response with user meta data

安裝方式

  1. Upload the plugin folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ screen in WordPress
  3. Go to Settings -> REST User Meta to configure which fields to include

常見問題集

Where can I find the settings page?

The settings page is located under Settings -> REST User Meta in your WordPress admin panel.

How do I access the user meta in the API response?

The user meta data is included in the author_meta object of each post in the REST API response.

Can I add custom meta fields?

Currently, the plugin supports a predefined set of common user meta fields. Custom fields support may be added in future versions.

使用者評論

2020 年 6 月 29 日
I used it for on of my projects and happy with it. Helped me what I needed.
2018 年 3 月 23 日
Hey, When I try to activate the plugin I got this error “Parse error: syntax error, unexpected ‘[‘ in D:\hshome\rayanabd\api.crazywebtag.com\wp\wp-content\plugins\wp-rest-api-user-meta\wp_rest_api_usermeta.php on line 37” WP Version 4.9.4
2017 年 12 月 18 日
I just installed the plugin, but it always return a null value even if there is an author.
2017 年 4 月 14 日
Just installed, activated this plugin and use it without any other configuration
閱讀全部 4 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈WP REST API – User Meta〉的開發相關工作。

參與者

將〈WP REST API – User Meta〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.1.0

  • Added settings page under Settings menu
  • Added configurable user meta fields
  • Added avatar URL option
  • Added user role support
  • Improved code organization
  • Removed unnecessary debug information

1.0.0

  • Initial release