Last active
January 29, 2025 02:47
-
-
Save miya0001/d6508b9ba52df5aedc78fca186ff6088 to your computer and use it in GitHub Desktop.
CORS for the WordPress REST API
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function my_customize_rest_cors() { | |
remove_filter( 'rest_pre_serve_request', 'rest_send_cors_headers' ); | |
add_filter( 'rest_pre_serve_request', function( $value ) { | |
header( 'Access-Control-Allow-Origin: *' ); | |
header( 'Access-Control-Allow-Methods: GET' ); | |
header( 'Access-Control-Allow-Credentials: true' ); | |
header( 'Access-Control-Expose-Headers: Link', false ); | |
return $value; | |
} ); | |
} | |
add_action( 'rest_api_init', 'my_customize_rest_cors', 15 ); |
Hi, the code worked for me. I put the code in a custom plugin for a specific WordPress project. Thanks.
Thanks !! Works perfectly well with Wordpress latest !
If you want to get more control here are some resources worth seeing:
Thanks, It worked 👍
Thanks, after 2 crazy day you save me
does it has something to do with WooCommerce ? it seems not
@mtrabelsi What is your point there? This is to add the missing CORS headers to WP-json, in short, yes it can be linked to WooCommerce, depending on your use.
You are a lifesaver! Thank you!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For me this does not work, it just adds one more origin
I posted a question with more details to Stack Overflow