Last active
October 24, 2016 16:18
-
-
Save mattheu/60e63342bb203760e23752e9383c977f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action( 'rest_api_init', 'wpleeds_rest_api' ); | |
function wpleeds_rest_api() { | |
register_rest_route( | |
'wpleeds/v1', | |
'/movies/(?P<name>.+)/?$', | |
[ | |
'methods' => WP_Rest_Server::READABLE, | |
'callback' => 'get_movie', | |
] | |
); | |
} | |
function get_movie( WP_REST_Request $request ) { | |
return [ | |
'name' => 'Mad Max: Fury Road', | |
'director' => 'George Miller', | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment