api

Whitelisting domains for WordPress CORS

This quick tip will share some code for how you can whitelist domains in WordPress to allow for Cross Origin Request Sharing (CORS). add_filter( 'allowed_http_origins', 'mytheme_add_origins' ); /** * Add origins for CORS */ functio…

Make REST calls in PHP

In this information around how to call a REST API. You can access any REST API with PHPs cURL Extension. However, the API Documentation (Methods, Parameters etc.) must be provided by your Client! Below the different options for making rest API in…

That is All