Skip to content

Instantly share code, notes, and snippets.

@mklasen
Last active April 28, 2017 13:47
Show Gist options
  • Save mklasen/f624ef04c8d80cb8b7ed5c47343630f4 to your computer and use it in GitHub Desktop.
Save mklasen/f624ef04c8d80cb8b7ed5c47343630f4 to your computer and use it in GitHub Desktop.
Add WordPress REST API Endpoint
add_action( 'rest_api_init', function () {
register_rest_route( 'myplugin/v1', '/author/(?P<id>\d+)', array(
'methods' => 'GET',
'callback' => function($request) {
print_r($request->get_params());
},
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment