Changeset 906890
- Timestamp:
- 05/02/2014 02:07:59 PM (12 years ago)
- File:
-
- 1 edited
-
wp-on-routes/tags/0.1.0/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-on-routes/tags/0.1.0/readme.txt
r906880 r906890 1 1 === WordPress on Routes === 2 3 2 Contributors: markzero 4 5 3 Tags: routes, path, HTTP method, custom paths, custom parameters, query, headers, exclude header, agent, filter agents 6 7 4 Requires at least: 3.8 8 9 5 Tested up to: 3.9 10 11 6 Stable tag: 0.1.0 12 13 14 7 15 8 This plugin adds API-like functionality to your WordPress instance. 16 9 17 18 19 10 == Description == 20 11 12 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. 13 21 14 This plugin allows you to: 15 22 16 1. Add custom routes to your WordPress installation 23 2. Set method GET/POST/DELETE etc. 24 3. Set body (as text, or template) or action (using add/do_action). If both are defined, `action` takes precedence over `body`. 25 4. Set header (e.g. 'Content-Type' => 'text/html; charset=UTF-8') 26 5. Exclude header (e.g. 'Set-Cookie') 27 6. Set parameter like '/my/route/:param1/:param2' 28 7. Add agents or filter by agents, using regular expressions 29 8. Agent filter for negative logic (e.g. /^((?!Firefox).)*$/, which tells "every browser except Firefox") 30 9. Include header and footer 17 1. Set method GET/POST/DELETE etc. 18 1. Set body (as text, or template) or action (using add/do_action). If both are defined, `action` takes precedence over `body`. 19 1. Set header (e.g. 'Content-Type' => 'text/html; charset=UTF-8') 20 1. Exclude header (e.g. 'Set-Cookie') 21 1. Set parameter like '/my/route/:param1/:param2' 22 1. Add agents or filter by agents, using regular expressions 23 1. Agent filter for negative logic (e.g. /^((?!Firefox).)*$/, which tells "every browser except Firefox") 24 1. Include header and footer 25 26 == Installation == 27 28 Good old plugin installation applies here too - download it / clone it to `plugins/` dir, activate. 29 30 No UI involved. 31
Note: See TracChangeset
for help on using the changeset viewer.