Skip to content

Instantly share code, notes, and snippets.

@kaelri
Created December 7, 2021 15:24
Show Gist options
  • Select an option

  • Save kaelri/83577d9aa225ef3ea0bb264d84e2f86f to your computer and use it in GitHub Desktop.

Select an option

Save kaelri/83577d9aa225ef3ea0bb264d84e2f86f to your computer and use it in GitHub Desktop.
<?php
add_action( 'rest_api_init', 'register_form_shortcode' );
function register_form_shortcode() {
register_rest_route( 'mdg/v1', '/events', [
'methods' => 'GET',
'callback' => 'get_shortcode_html',
'permission_callback' => '__return_true',
]);
}
function get_shortcode_html( WP_REST_Request $request ) {
// do stuff
return new WP_REST_Response( $data, 200 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment