RSS CORS Enable

外掛說明

RSS CORS Enable is a simple yet powerful plugin designed to solve the common problem of accessing WordPress RSS feeds from different origins. By default, accessing WordPress RSS feeds via JavaScript from a domain different than the one where WordPress is hosted can result in Cross-Origin Resource Sharing (CORS) errors. This plugin addresses this issue by adding an Access-Control-Allow-Origin: * header to your WordPress RSS feed, making it accessible from any origin.

安裝方式

  1. Upload the rss-cors-enable directory to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ menu in WordPress.
  3. That’s it! The plugin works out of the box, no configuration is needed.

常見問題集

Can I restrict the RSS feed to be available for specific domains instead of all?

Yes, although the default behaviour is to allow all origins (Access-Control-Allow-Origin: *), you can modify the plugin code to specify specific domains. Replace the * in the header("Access-Control-Allow-Origin: *"); line with the domain you wish to allow. When you do this, it might be wiped away when upgrading the plugin.

Does this plugin add CORS headers to other parts of my website than the RSS feed?

No, it shouldn’t, as far as we’ve tested. This plugin is specifically designed to modify only the WordPress RSS feed responses. Other parts of your WordPress site or API will not be affected.

使用者評論

這個外掛目前沒有任何使用者評論。

參與者及開發者

以下人員參與了開源軟體〈RSS CORS Enable〉的開發相關工作。

參與者

將〈RSS CORS Enable〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0

  • Initial release. Adds CORS header to WordPress RSS feeds.