Skip to content

Instantly share code, notes, and snippets.

@Oceas
Last active July 20, 2020 16:49
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
/**
* Returns Hello World.
*
* @param object $data Options for the function.
* @author Scott Anderson <scott.anderson@webdevstudios.com>
* @return string
*/
function hello_world( object $data ) {
return 'Hello World';
}
add_action( 'rest_api_init', function () {
register_rest_route( 'myepiscopal', '/hello_world/', array(
'methods' => 'GET',
'callback' => 'hello_world',
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment