View WP REST-API search all (specified) post-types
<?php | |
add_action('rest_api_init', function () { | |
register_rest_route('mvaessen/v1', '/search', array( | |
'methods' => 'GET', | |
'callback' => 'search_all_endpoint', | |
)); | |
}); | |
function search_all_endpoint(WP_REST_Request $request) |