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

WP-Auto Image Grabber

描述

Inserts an image from a page you link to at the start of your blog post. A simple algorithm tries to get a “main content” image (rather than an advertisement), automatically providing your post with relevant, attributed artwork. This is especially useful for bloggers who syndicate posts to sites like Facebook or Digg, which use the first image in a post as a thumbnail for their post.

This plugin requires PHP 5; sites running on PHP 4 will produce fatal errors.

By default, the plugin will follow the first link in your blog post and grab what it thinks is an appropriate main content image from there. If your posts follow a particular structure or pattern, you can tell the plugin to follow a certain link (such as a link with a particular class) by setting the Pointer element for destination page value to an XPath query that returns the link you want.

For instance, the following XPath query will match the first link with a class of grab-me:

//a[@class="grab-me"][1]

Here’s an XPath query that will match the first link within the very last paragraph of your post:

//p[position()=last()]/a[1]

For more XPath (and XQuery) syntax examples, refer to the XPath specification at the W3C. If you’re a developer, you may also find several XPath tools helpful.

Additionally, this plugin allows you to set a custom class value on the <img> element that it adds to your post by specifying it in the Image class value setting. For maximum compatibility, consider using one of the WordPress-generated classes most themes utilize. For instance, using alignright will probably make the automatically-added image float to the right.
This plugin uses PHP5’s DOMDocument methods to parse both your post and the remote page. It uses XPath to query the DOM.

螢幕截圖

  • The WP-Auto Image Grabber plugin options.

安裝

  1. Download the plugin file.
  2. Unzip the file into your ‘wp-content/plugins/’ directory.
  3. Go to your WordPress administration panel and activate the plugin.

常見問題

Will the plugin change my posts, database, or anything else?

No; this plugin uses WordPress filters to make changes on-the-fly. It does not change the content of your posts in any way, and it uninstalls cleanly, without leaving a trace. 🙂

Does the plugin save the images or offer any caches?

No, not at this time, but I’m hoping to add this optional capability to future versions of the plugin. (Patches welcome.)

評價

There are no reviews for this plugin.

貢獻者及開發者

“WP-Auto Image Grabber” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 WP-Auto Image Grabber 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

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

修改日誌

0.3.1

  • Fix bug causing plugin to throw fatal error when remote document could not be parsed.

0.3

  • New option to customize the remote main image search patterns.
  • Fix bug where plugin didn’t activate with proper default options.
  • Minor code cleanup.

0.2

  • Minor code clarity improvements, more comprehensive “main image” pattern matching.

0.1

  • Initial development version.