>
Download This Plugin | |
Download Elegant Themes | |
Name | WP-Auto Image Grabber |
Version | 0.3.1 |
Author | Meitar Moscovitz |
Rating | 0 |
Last updated | 2011-02-28 01:08:00 |
Downloads |
2395
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
WP-Auto Image Grabber plugin added 3 bytes of resources to the Home page and 7 bytes of resources to the sample Post page.
WP-Auto Image Grabber plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! WP-Auto Image Grabber plugin ads no tables to your Wordpress blog database.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.