وضاحت
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:
- Add custom routes to your WordPress installation
- Set method GET/POST/DELETE etc.
- Set body (as text, or template) or action (using add/do_action). If both are defined,
action
takes precedence overbody
. - Set header (e.g. ‘Content-Type’ => ‘text/html; charset=UTF-8’)
- Exclude header (e.g. ‘Set-Cookie’)
- Set parameter like ‘/my/route/:param1/:param2’
- Add agents or filter by agents, using regular expressions
- Agent filter for negative logic (e.g. /^((?!Firefox).)$/, which tells “every browser except Firefox”)
- 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.
جائزا
ھن پلگ ان لاءِ ڪي به رايا ناھن.
تعاون ڪندڙ & ڊولپرز
“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