我正在尝试将 CORS ( http://enable-cors.org/ ) 支持添加到自定义 Wordpress 主题中的 RSS2 提要。我尝试了以下方法,但均无济于事:
按照https://web.archive.org/web/20140314152828/http://bowdenweb.com:80/wp/2011/05/how-to-enable-cors-in-wordpress.html上的说明,我尝试了修改主题的 header.php 文件并添加以下代码:
header("Access-Control-Allow-Origin: *");
这成功地将 CORS 标头添加到 Wordpress 帖子中,但没有添加到 RSS2 提要中。
然后,我尝试使用“Plugin API / Action Reference”,即
add_action
函数(http://codex.wordpress.org/Plugin_API/Action_Reference)。我在 header.php 中添加了以下代码:
function add_cors_headers() { header("Access-Control-Allow-Origin: *"); } add_action('rss2_head','add_cors_headers');
再次,没有成功。现在我陷入了死胡同。有任何想法吗?