开发者 | bwibrew |
---|---|
更新时间 | 2018年2月4日 18:18 |
PHP版本: | 5.6 及以上 |
WordPress版本: | 4.9 |
版权: | MIT License |
版权网址: | 版权信息 |
wp-site-monitor/v1/
namespace.
e.g. https://example.com/wp-json/wp-site-monitor/v1/wp-version
Additional endpoints
wp-version
returns the current version of wordpress as a string."4.9.2"
- plugins
returns a JSON object listing installed plugins with the plugin details.
Example output:
json
{
"wp-super-cache/wp-cache.php": {
"Name": "WP Super Cache",
"PluginURI": "https://wordpress.org/plugins/wp-super-cache/",
"Version": "1.5.9",
"Description": "Very fast caching plugin for WordPress.",
"Author": "Automattic",
"AuthorURI": "https://automattic.com/",
"TextDomain": "wp-super-cache",
"DomainPath": "",
"Network": false,
"Title": "WP Super Cache",
"AuthorName": "Automattic",
"Active": true
},
"wordpress-seo/wp-seo.php": {
"Name": "Yoast SEO",
"PluginURI": "https://yoa.st/1uj",
"Version": "6.1.1",
"Description": "The first true all-in-one SEO solution for WordPress, including on-page content analysis, XML sitemaps and much more.",
"Author": "Team Yoast",
"AuthorURI": "https://yoa.st/1uk",
"TextDomain": "wordpress-seo",
"DomainPath": "/languages/",
"Network": false,
"Title": "Yoast SEO",
"AuthorName": "Team Yoast",
"Active": true
}
}
Options are provided in the WP Site Monitor settings menu to toggle individual endpoints.
/wp-content/plugins/wp-site-monitor
directory, or install the plugin through the
WordPress plugins screen directly.Because this plugin just extends the official REST API, you can use any authentication method the REST API supports. You may want to use a another plugin to add extra authentication methods such as WordPress REST API – OAuth 1.0a Server or JWT Authentication for WP REST API