這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

WordPress on Routes

描述

WordPress on Routes is a plugin for WordPress, inspired mainly by Ruby micro-frameworks. It adds ability to add custom routes to your WordPress instance. Useful for form submissions, API-like features, etc.

This plugin allows you to:

  1. Add custom routes to your WordPress installation
  2. Set method GET/POST/DELETE etc.
  3. Set body (as text, or template) or action (using add/do_action). If both are defined, action takes precedence over body.
  4. Set header (e.g. ‘Content-Type’ => ‘text/html; charset=UTF-8’)
  5. Exclude header (e.g. ‘Set-Cookie’)
  6. Set parameter like ‘/my/route/:param1/:param2’
  7. Add agents or filter by agents, using regular expressions
  8. Agent filter for negative logic (e.g. /^((?!Firefox).)$/, which tells “every browser except Firefox”)
  9. Include header and footer

For basic and advanced usage examples, take a look at https://github.com/markzero/wp-on-routes.

安裝

Good old plugin installation applies here too – download it / clone it to plugins/ dir, activate.

If you want to clone it, here is the repository: https://github.com/markzero/wp-on-routes

No UI involved.

評價

There are no reviews for this plugin.

貢獻者及開發者

“WordPress on Routes” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 WordPress on Routes 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

修改日誌

0.3.0

  • Added predefined path /posts.json to get all posts list as application/json response

0.2.0

  • Added test environment and some tests for methods, parameters and splats