WP REST API – User Meta

वर्णन

Now you have no need to make additional requests to get author info (name, display_name, first_name, last_name, user_email, user_registered date) from their id that is available in the default json response.

Now all these author data is available in ‘author_meta’ field from your json response.

For example in ‘wp-json/wp/v2/posts’ you can find default fields ‘author’ that contains only its id. With this plugin you can also find new ‘author_meta’ field that include details about author.

Before:
{

author: 1

}

After:
{

author_meta: {
ID:”1″,
display_name:”admin”,
user_nicename:”admin”,
first_name:””,
last_name:””,
user_email:”[email protected]”,
user_registered:”2016-03-01 21:25:23″
}

}

Credits

This plugin is created by Ruhul Amin

स्क्रीनशॉट

  • screenshot-1.png

स्थापना

  1. If your wordpress version below 4.7 then double check you have the WordPress REST (v2) API installed and active
  2. Upload the plugin folder to the /wp-content/plugins/ directory, or install the plugin through the WordPress plugins screen directly.
  3. Activate the plugin through the ‘Plugins’ screen in WordPress

समीक्षा

जून 29, 2020
I used it for on of my projects and happy with it. Helped me what I needed.
मार्च 23, 2018
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
डिसेंबर 18, 2017
I just installed the plugin, but it always return a null value even if there is an author.
एप्रिल 14, 2017
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.0.0

  • Initial release!

1.0.1

  • Added user_email, user_nicename, first_name, last_name to the author_meta field.