How to enable allow CORS Policy Header in WordPress?
I’ve used a few different WordPress API’s – but for those of you using the ‘official’ WP-API, I had much trouble with this CORS — and what I found was that between the .htaccess approach and a few others I stumbled upon… adding this to your theme functions.php worked best.
/** * Add this to your WordPress function.php file - By Wpdevkit.in */ function add_cors_http_header(){ header("Access-Control-Allow-Origin: *"); } add_action('init','add_cors_http_header'); add_filter( 'wp_headers', 'send_cors_headers', 11, 1 ); function send_cors_headers( $headers ) { $headers['Access-Control-Allow-Origin'] = $_SERVER[ 'HTTP_ORIGIN' ]; return $headers; }
POST COMMENTS