Problems getting values from response from wp_remote_post
Problems getting values from response from wp_remote_post
Problems getting values from response from wp_remote_post
Here is your main problem: chemin = plugin_dir_url( __FILE__ ) . “inc/json/notes.json”; There are 5 critical mistakes in the code: file_get_contents requires a file path, but you’re asking for a URL by using plugin_dir_url, not all servers support remote URLs in file_get_contents for security reasons, and if they do, this would be a big performance … Read more
Just use another array() inside user array() $response = array(); $response[] = array( ‘version’ => ‘1.0’, ‘user’ => array( array( ‘first_name’ => ‘Razon’, ‘last_name’ => ‘komar pal’, ’email’ => ‘[email protected]’, ‘id’ => 10, ) ), ); return rest_ensure_response($response); It will output like: [ { “version”: “1.0”, “user”: [ { “first_name”: “Razon”, “last_name”: “komar pal”, “email”: … Read more
Using wp_send_json_success instead of $result[‘message’], die, etc
Maybe the simplest way is to put your code in a function and call it on that specific page. if (! function_exists(‘my_schema_code’)) { function my_schema_code(){ /* schema code… */ } } if that page doesnt have a custom file, create one, for example a template or a page. just like Rup said.
Get html from custom route api
thank you so much Tom and Sally. My issue was indeed to not send registr_submit to. In reallity I didn’t well understand ajax, now it’s good. I thought that serialize string of inputs form was enough to get the submit value. Mainly I convinced that php send to jquery/ajax while it is obviously the opposite. … Read more
Whats the best practise on how to store json data from a custom settings page?
Stop JSON code from injecting into gutenburg classic block
JSON api oembed youtube