/routes

Simple routing for WordPress

Primary LanguagePHP

Routes

Simple routing for WordPress.

Build Status Coverage Status Packagist Downloads

Usage

/* functions.php */
Routes::map('myfoo/bar', 'my_callback_function');
Routes::map('my-events/:event', function($params) {
    $event_slug = $params['event'];
    $event = new ECP_Event($event_slug);
    $query = new WPQuery(); //if you want to send a custom query to the page's main loop
    Routes::load('single.php', array('event' => $event), $query, 200);
});