wordpress使用JSON API插件可以发送http请求来操作wordpress,当想获得blog的所有publish的文章的总数时,发送如下请求:
[域名]/wp-json/wp/v2/posts?per_page=1
但是遇到如下错误:
{
"code": "rest_no_route",
"data": {
"status": 404
},
"message": "No route was found matching the URL and request method"
}
使用的wordpress版本是4.5.3,更新到4.9.8后可以正常请求。