Show a fresh image on every page load.
The Image Refresh plugin allows you to randomly display a different image on every page load.
Many people like to vary up the images on their site just to keep things fresh. Loading a new image every time someone visits your homepage is something that should be simple, right? Alas, people resort to using plugins that are not meant for this purpose and end up sacrificing performance for the sake of a fresh look. Well, my friend, the search has ended. This plugin does nothing more, and nothing less than load that fresh image where you need it. To top it all off, we do it in a way that won’t slow your site down.
Using this plugin is simple:
[mpress_image_refresh]
shortcode where you want your image to appear.If you don’t meet the below requirements, I highly recommend you upgrade your WordPress install or move to a web host
that supports a more recent version of PHP.
/wp-content/plugins/
directory and unzipOnce the plugin is installed and activated, go to any page or post where you want to have a fresh image display on each page load. Just above the content editing area, click on the ‘Add Media’ icon to bring up the media uploader. Upload one or more images and click ‘Save Changes’ before exiting out of the popup window. Add the [mpress_image_refresh]
shortcode in the content area where you want your image to appear. Save your changes and check out the results!
The [mpress_image_refresh]
shortcode supports a few attributes to give you more control over the results:
attachment – You can pass in a comma separated list of image IDs if you want to directly specify a set of images to use. Using this attribute invalidates the post_id
and not
attributes. Example: [mpress_image_refresh attachment="19, 37, 940"]
Optionally, you can also have the shortcode randomly pull from a subset using this syntax: [mpress_image_refresh attachment="19,37,940|453|98"]
post_id – You can pass in the post ID to pull attached images from. If your images are attached to another post, just provide the ID of that post and we will pull those images instead. Example: [mpress_image_refresh post_id="19"]
size – By default, we use the ‘large’ image size defined by WordPress. However, you can use the other built-in image sizes ( ‘thumbnail’, ‘medium’, ‘full’ ) or any custom image sizes you have defined. Example: [mpress_image_refresh size="full"]
class – Set a custom class on your image using this attribute so you can apply custom styling. Example: [mpress_image_refresh class="fresh-image"]
not – Sometimes you have an image within the page content, and as such it is automatically attached to the page or post. You probably don’t want these images to be used as one of your random images, so just pass in the ID of those images to keep those from showing up. Example: [mpress_image_refresh not="2310, 2319"]
caption – You can pass in ‘true’ or ‘false’. If set to ‘true’, then the caption will be displayed below the image. Example: [mpress_image_refresh attachment="5,7,9" caption="true"]
.
Keep in mind that any of these attributes can be combined as needed. Example: [mpress_image_refresh post_id="19" size="full" not="2310"]
. Also, keep in mind that the shortcode can be used in text widgets. However, you will probably want to define the post_id attribute when using the shortcode in a text widget.
mpress_image_refresh-attachment_id
— Filter the attachment ID selected for display. Parsed shortcode attributes are provided as an additional parameter to the callback function.mpress_image_refresh-image_atts
— Filter the image attributes. The attachment post object and parsed shortcode attributes are provided as additional parameters to the callback function.mpress_image_refresh-markup
— Filter the markup surrounding the image. The attachment post object and parsed shortcode attributes are provided as additional parameters to the callback function.mpress_image_refresh-image_html
— Filter removed in version 2.0. Use mpress_image_refresh-markup
filter instead.mpress_image_refresh-image_html
to allow for HTML customizations.