Slide 42
Slide 42 text
x w
-FF GPF RQ P
add_action( 'rest_api_init', function () {
register_rest_route( 'wapuu/v1', '/set/(?P\d+)', array(
'methods' => 'POST',
'callback' => 'set_wapuu_image',
'args' => array(
'id' => array(
'validate_callback' => function($param, $request, $key) {
return is_numeric( $param );
}
),
),
) );
register_rest_route( 'wapuu/v1', '/get', array(
'methods' => 'GET',
'callback' => 'get_wapuu_image',
) );
} );