Skip to content

Instantly share code, notes, and snippets.

@ravewebdev
Last active July 10, 2020 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ravewebdev/b88041afd7d18925b78f150213e8e7d4 to your computer and use it in GitHub Desktop.
Save ravewebdev/b88041afd7d18925b78f150213e8e7d4 to your computer and use it in GitHub Desktop.
3.1.1. Register route
<?php
register_rest_route( 'rave-initiative/v1', '/initiative/(?P<id>[\d]+)', [
'methods' => WP_REST_SERVER::EDITABLE,
'callback' => 'update_initiative',
'permission_callback' => 'check_initiative_permissions',
] );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment