thefold / wordpress-dispatcher
Create URL endpoints within WordPress
2.1
2019-02-13 08:17 UTC
Requires
- php: >=5.4
This package is not auto-updated.
Last update: 2026-03-10 15:58:43 UTC
README
Easily add custom URL endpoints in WordPress. Map a url to a function.
Example
use \TheFold\WordPress\Router;
Router::routes([
'testing-a-url' => function(){
echo 'Hello Ted';
},
'hello-([a-z]+)' => function($request, $name){
echo "Hello $name";
}
]);
/testing-a-url & /hello-dougle will now be accessable in your WordPress site.
Install
Composer
composer require thefold/wordpress-dispatcher