WP REST API get all posts (or customs posts) for a React app

Firstly, the custom posts need to have the ‘show_in_rest’ => true, parameter set on post registration – see Adding REST API Support For Custom Content Types for more detailed instructions. Secondly, I then usually navigate to yoursiteaddress.com/wp-json/ for example https://blog.ted.com/wp-json/ – there you’ll see a play-book for all the routes you can play with in … Read more

Get JSON from self hosted wordpress site

This is a WordPress setting you can change. Login to the WP admin panel, click Settings > Reading, change “Syndication feed show the most recent” from the default 10 items to something higher, and click Save. If you don’t see the change immediately, try clearing the recent cache in your browser, or open the link … Read more

Create a file format (csv,json,etc) when save/update a Post

There are a number of action hooks for Post Status Transitions. They each receive the $post object as an argument. You could use these to trigger a function that writes your file to disk using fopen. Edit: if you’re writing CSV, PHP has a function specifically for that: fputcsv (fopen still required)

return content section as json in wp rest api v1

You can (and you should) always filter the output of WP_REST_API. add_filter(‘json_prepare_post’, ‘change_this_into_a_proper_function_name’, 999); function change_this_into_a_proper_function_name($post){ // hack and slash into your $post here. This is a regular WP_Post // add custom fields and tax terms you might need, remove what // you don’t want to expose to app or are never going to need… … Read more

Dynamic data table from external json feed

For the first question you could try with the following gist in the github https://gist.github.com/phpkidindia/a448e9b8132d3634bdebfa70a8d20c03 For the second option you should create a form with two fields date and distance and on the change event of those two fields you should create ajax request. and bind the result to the data table. Hope this helps.

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)