Skip to content

Instantly share code, notes, and snippets.

@Oceas
Created July 20, 2020 17:01
/**
* Returns name field in url parameter.
*
* @param object $args Options for the function.
* @author Scott Anderson <scott.anderson@webdevstudios.com>
* @return string
*/
function say_name( object $args ) {
return $args['name'];
}
add_action( 'rest_api_init', function () {
register_rest_route( 'myepiscopal', '/say_name/', array(
'methods' => 'GET',
'callback' => 'say_name',
) );
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment