wenprise/wordpress-dispatcher

Create URL endpoints within WordPress

2.2 2024-08-22 06:19 UTC

This package is auto-updated.

Last update: 2025-03-22 07:40:42 UTC


README

Easily add custom URL endpoints in WordPress. Map a url to a function.

##Example

use \Wenprise\Dispatcher\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 wenprise/wordpress-dispatcher