Skip to content

Instantly share code, notes, and snippets.

@thiagoeliasr
Forked from brunomonteiro3/cross-domain.php
Last active September 11, 2015 16:59
Show Gist options
  • Save thiagoeliasr/e5509668274e60b52656 to your computer and use it in GitHub Desktop.
Save thiagoeliasr/e5509668274e60b52656 to your computer and use it in GitHub Desktop.
Allow Cross-domain requests on Wordpress
add_action( 'init', 'handle_preflight' );
function handle_preflight() {
header("Access-Control-Allow-Origin: " . get_http_origin());
header("Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE");
header("Access-Control-Allow-Credentials: true");
if ( 'OPTIONS' == $_SERVER['REQUEST_METHOD'] ) {
status_header(200);
exit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment