這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

Include URL

外掛說明

Features

Include URL is a WordPress plugin for seamless inclusion of data from remote urls, optionaly passing GET parameters to it..

  • Get remote url content
  • Pass given GET params to url
  • Cache fetched content localy in WordPress DB (for extremely slow sources)

Usage

  [include-url href="<URL>" params="param1,param2,param3..." timeout="seconds" cache="seconds" allow-file="1" allow-shortcode="1"]
  • href – url starting with http:// or https:// (required)
  • params – list of comma separated GET parameters, that should be passed to include url
  • timeout – request timeout in seconds
  • cache – cache request data localy in wordpress database (default = 0 seconds / disabled)
  • allow-file – allow file:// urls in href (default = 0 / disabled, 1 = prepend file with document root, 2 = use absolute path)
  • allow-other – allow any other protocol supported by cURL
  • allow-shortcode – allow and process wordpress shortcodes in included content

Examples

  • Search frontend page for SOLR

    [include-url href=”http://localhost:8080/solr/core1/select?wt=xslt&wt=results.xslt” params=”q,fq” cache=”1800″]

This requests data from local SOLR instance, that will return search results formated as HTML (ie. table) via its XSLT handler, optionally passing q (query) and fq (filter) params to it. Data will be cached for 1800 seconds in WordPress database.

  • Read file from document_root

    [include-url href=”file://robots.txt” allow-file=”1″]

  • Read file specified by absolute path

    [include-url href=”file:///var/www/html/robots.txt” allow-file=”2″]

安裝方式

  1. Make sure you are using WordPress 4.0 or later and that your server is running PHP 5.2.4 or later (same requirement as WordPress itself)
  2. Install and activate the plugin as usual from the ‘Plugins’ menu in WordPress.
  3. Use shortcode in page or post

使用者評論

閱讀全部 0 則使用者評論

參與者及開發者

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

參與者

將〈Include URL〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

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

變更記錄

0.3.5 (2020-07-28)

  • Fix some undefined warnings and add timeout to file_get_contents() call (Thanks Marco Baumgartl for reporting it)

0.3.4 (2019-05-22)

  • Improve shortcode attributes processing

0.3.2 (2018-05-17)

  • Add allow-shortcode option

0.3.1 (2017-04-03)

  • Fix cached content processing

0.3.0 (2016-12-15)

  • Allow file:// urls if allow-file=”1″ or allow-file=”2″ param is given
  • Allow all cURL protocols if allow-other=”1″ param is given

0.2.1 (2016-08-26)

  • Restrict urls to http:// and https://

0.2.0 (2016-08-25)

  • Initial release