如何将 WordPress 插件转换为使用 WP REST API
How to convert WordPress plugins to use WP REST API
我一直在阅读有关 WP API 的文章,我喜欢这个想法,但是它是否足够使用?例如,我想构建一个自定义的 React 前端,但使用 WP API。我担心的是我无法访问某些插件信息。是否可以挂钩并为不支持 WP 的插件创建自定义端点 API?
确实可以。例如,您可以 add values to the response, add support for custom post types or add fully custom endpoints.
请注意 v1 将被 API 的 v2 取代。 v2 仍在进行中 - 已经有一段时间了 - 并且会引入很多重大更改,因此最好使用 latest beta version of the API.
我一直在阅读有关 WP API 的文章,我喜欢这个想法,但是它是否足够使用?例如,我想构建一个自定义的 React 前端,但使用 WP API。我担心的是我无法访问某些插件信息。是否可以挂钩并为不支持 WP 的插件创建自定义端点 API?
确实可以。例如,您可以 add values to the response, add support for custom post types or add fully custom endpoints.
请注意 v1 将被 API 的 v2 取代。 v2 仍在进行中 - 已经有一段时间了 - 并且会引入很多重大更改,因此最好使用 latest beta version of the API.