Continue execution after WP REST API response
I am trying to extend the WordPress REST API with an endpoint that takes Zoom webhooks. Zoom requires a response within 3 seconds … Read more
I am trying to extend the WordPress REST API with an endpoint that takes Zoom webhooks. Zoom requires a response within 3 seconds … Read more
I’m writing some code that updates options using update_option using the REST API and apiFetch. I’m used to doing this using AJAX where … Read more
So, I’ve created a custom endpoint to retrieve some post data I need to retrieve for a feature I’m building for some custom … Read more
Is there a standard route for getting all blog posts by specific author id? I can’t find anything obvious. I tried this but … Read more
I am new to WordPress and REST API and I need to read posts from /wp-json/wp/v2/posts with an external application called Intuiface. Intuiface … Read more
Sorry I feel like really stuck here. I have a plugin introducing a new Rest API controller (WP_REST_Controller) with basically a single endpoint … Read more
I play around with Backbone.js (Great !) and want to synchronize my model data with the wordpress ajax api (3.6.1) on the server-side. … Read more
I need some opinions and suggestions to help me get out of this dilemma. Firstly I’m sorry if this kind of question isn’t … Read more
I am building a plugin for WordPress which will communicate with some remote REST API endpoints and display data in a list format … Read more
I’m trying to add an endpoint with the following: register_rest_route(‘namespace/v1′,’custom-search/(?P<search>[a-zA-Z\s]+)’, array( ‘methods’ => ‘GET’, ‘callback’ => ‘gm_custom_search_callback’ ) ); It registers the route, … Read more