admin管理员组文章数量:1420220
The following code works in my theme's functions.php file but not in my plugin's main/entry file:
/** Allow cross origin resource access
*/
function add_cors_http_header(){
header("Access-Control-Allow-Origin: *");
}
add_action('init','add_cors_http_header');
If put into the main plugin file I see this:
Access to XMLHttpRequest at 'http://localhost/
wptest2/wp-admin/admin-ajax.php'
from origin 'http://localhost:8080'
has been blocked by CORS policy:
No 'Access-Control-Allow-Origin' header
is present on the requested resource.
I need to setup CORS using my plugin files only so users won't have to make custom mods, is there any way to accomplish this?
Also tried in the plugin entry file (and failed):
function add_allowed_origins(array $origins = []) {
$origins[] = 'http://localhost:8080';
return $origins;
}
add_filter('allowed_http_origins', 'add_allowed_origins');
.
function add_cors_http_header() {
header("Access-Control-Allow-Origin: *");
}
add_action('send_headers', 'add_cors_http_header');
The following code works in my theme's functions.php file but not in my plugin's main/entry file:
/** Allow cross origin resource access
*/
function add_cors_http_header(){
header("Access-Control-Allow-Origin: *");
}
add_action('init','add_cors_http_header');
If put into the main plugin file I see this:
Access to XMLHttpRequest at 'http://localhost/
wptest2/wp-admin/admin-ajax.php'
from origin 'http://localhost:8080'
has been blocked by CORS policy:
No 'Access-Control-Allow-Origin' header
is present on the requested resource.
I need to setup CORS using my plugin files only so users won't have to make custom mods, is there any way to accomplish this?
Also tried in the plugin entry file (and failed):
function add_allowed_origins(array $origins = []) {
$origins[] = 'http://localhost:8080';
return $origins;
}
add_filter('allowed_http_origins', 'add_allowed_origins');
.
function add_cors_http_header() {
header("Access-Control-Allow-Origin: *");
}
add_action('send_headers', 'add_cors_http_header');
Share
Improve this question
edited Jul 12, 2019 at 21:22
Sean D
asked Jul 12, 2019 at 20:29
Sean DSean D
3878 silver badges21 bronze badges
1 Answer
Reset to default 1Try using send_headers
action hook instead of init
. It should work.
add_action( 'send_headers', 'add_cors_http_header' );
function add_cors_http_header()
{
header("Access-Control-Allow-Origin: *");
}
本文标签: headersallowedhttporigins() only works in theme functionsphp
版权声明:本文标题:headers - allowed_http_origins() only works in theme functions.php 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745325760a2653583.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论