Skip to content

Instantly share code, notes, and snippets.

View rpasillas's full-sized avatar

Ron Pasillas rpasillas

View GitHub Profile
<?php
//--REST ROUTE FOR CUSTOM POST TYPE EVENTS
//--THIS IS WORKING
add_action( 'rest_api_init', function(){
register_rest_route( 'event-search/v1', '/search/', array(
'methods' => 'GET',
'callback' => 'getResults'
));
});