Skip to content

Instantly share code, notes, and snippets.

@DarioBF
Created July 28, 2019 19:51
Show Gist options
  • Save DarioBF/7435604210a98d42c3b123239f3265b0 to your computer and use it in GitHub Desktop.
Save DarioBF/7435604210a98d42c3b123239f3265b0 to your computer and use it in GitHub Desktop.
<?php
// Registramos una ruta nueva para la rest api
add_action( 'rest_api_init', function () {
register_rest_route( 'convulsio/v2', '/convulsio-events/',
array(
'methods' => 'GET',
'callback' => 'convuls_customquery'
)
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment