如何在 Wordpress 4.1.1 中访问 REST API
How do I access the REST API's in Wordpress 4.1.1
我正在使用 wordpress 并根据文档 here 我下载、安装并激活它。但是,当我去
时它似乎不起作用
localhost/wp-json/posts
我收到 404
我认为可能存在几个问题,其中一个是官方插件站点没有说它支持 4.1,但是,一些信息表明它可能默认包含在内。我也尝试使用 git 存储库,但似乎也没有用。
我做错了什么?
更新
我将永久链接更改为 post 名称,并在我的 httpd.conf 中取消注释 mod_rewrite 但没有骰子。
You need to be using pretty permalinks to use the plugin, as it uses custom rewrite rules to power the API.
检查您的永久链接设置并确保您的网络服务器支持重写。
我正在使用 wordpress 并根据文档 here 我下载、安装并激活它。但是,当我去
时它似乎不起作用localhost/wp-json/posts
我收到 404
我认为可能存在几个问题,其中一个是官方插件站点没有说它支持 4.1,但是,一些信息表明它可能默认包含在内。我也尝试使用 git 存储库,但似乎也没有用。
我做错了什么?
更新
我将永久链接更改为 post 名称,并在我的 httpd.conf 中取消注释 mod_rewrite 但没有骰子。
You need to be using pretty permalinks to use the plugin, as it uses custom rewrite rules to power the API.
检查您的永久链接设置并确保您的网络服务器支持重写。