BLACK FRIDAY
Save 59% on PageForge Annual $191/year $485/year
Claim 59% Off →
Image Shortcake icon
Possibly abandoned Tested up to 4.3.34

Image Shortcake

When images are inserted into posts from the media library or media uploader, only the html of the tag and the link around it (if any) are preserved. This means that themes which want to change the way images are marked…

Active installs10+10+ tier
Downloads · 30d47▲ +74.1% vs prev. 30d
Rating5/51 reviews
Health score30/100At risk
All-time downloads3.1KSince May 2015
Support resolved—No recent threads
RequiresWP 3.0.1PHP any
Downloads · 7d11▼ -21.4% week over week
Our verdict

Consider an alternative

Image Shortcake shows warning signs in 2026 — compare the alternatives below before installing. It runs on 10+ sites, is rated 5/5 and was last updated 11 years ago, and scores 30/100 on our health check.

  • Small user base (10+ active installs)
  • Very few reviews so far
  • No update in 11 years
  • Only tested up to WordPress 4.3 (latest is 7.1)

How does it stack up?

Side-by-side on installs, updates, ratings & support

Daily downloads

258Jun 29Aug 12Sep 26
Yesterday4
Daily average (1y)1
Peak day11Sep 10, 2026
Last 12 months326

Download spikes usually follow a new release — each site that auto-updates counts as a download.

Rankings

Where Image Shortcake stands today

WordPress.org search rankings

Live position in the plugin search, top 100
KeywordPositionCompeting pluginsCategory
images >100 10,000 Best images plugins →
shortcodes >100 10,000 Best shortcodes plugins →

Version adoption

Share of active sites per release.

  • 0.1100.0%

Rating breakdown

★★★★★★★★★★ 5 from 1 reviews

  • 5★100.0%
  • 4★0.00%
  • 3★0.00%
  • 2★0.00%
  • 1★0.00%

About Image Shortcake

From the official readme · v0.1.0

Description

When images are inserted into posts from the media library or media uploader, only the html of the <img> tag and the link around it (if any) are preserved. This means that themes which want to change the way images are marked up in content don’t have an easy way of doing this.

Image Shortcake is an attempt to solve this problem, by saving images in post content as shortcodes rather than HTML. The output of shortcodes can be easily filtered in themes, plugins and templates, and since the original attachment data is preseved as attributes on the shortcode, it becomes much easier for modify the way images are marked up in themes.

For best results, use this with the Shortcake (Shortcode UI) plugin. Shortcake offers an easy to use interface to manage shortcodes in post content.

What could you use this for? Well, at Fusion we use this shortcode for:

  • Responsive Images. By filtering the output of the [img] shortcode image tag, we’re able to insert the srcset attribute, so that all of
    the images on our site are served responsively to browsers that support that.

  • Inline sharing buttons. We’ve added share links to each of the images on our site. Because these are inserted through a filter on a shortcode and not in the post content, it’s easy to modify them on the fly. And having this logic in template files rather in on-page javascript that runs after page load makes it quicker for users.

  • Photo credits. We’ve added “credit” as an image meta field, and we use a filter on ‘img_shortcode_output_after_linkify’ to display it on all images.

See the Installation section for more ideas and tips for custom image templates. Get involved with the project on Github.

Installation

Customizing Output

The whole point of using shortcodes rather than HTML tags for images is that you can customize the markup of images in your theme. This plugin offers three primary hooks to modify the output:

  • img_shortcode_output_img_tag: Filters the output of the tag before wrapping it in link or caption
  • img_shortcode_output_after_linkify: Filters the output of the tag after wrapping in link
  • img_shortcode_output_after_captionify: Filters the output of the tag after wrapping in link and attaching caption

You can, of course, disregard the markup generated by this plugin altogether and use a template part for images if you want. This example adds EXIF data below all images containing those fields, in all post content:

in the theme’s functions.php:

    `
add_filter( 'img_shortcode_output_img_tag', 'load_image_template', 10, 2 );

function load_image_template( $_, $attributes ) {
    ob_start();
    get_template_part( 'inline-image' );
    return ob_get_clean();
}
    `

in a template file called inline-image.php:

    `
<?php

$attachment = $attributes['attachment'];
$size       = $attributes['size'];
$class      = $attributes['classes'];
$align      = $attributes['align']
$alt        = $attributes['alt']
$linkto     = $attributes['linkto']

$attachment_meta = wp_get_attachment_metadata( intval( $attachment ) );
$exif_data = ( $attachment_meta['image_meta']['camera'];

echo wp_get_attachment_image( $attachment, $size, null,
    array(
        'class' => "$class $align attachment-$size",
        'alt'   => $alt,
    )
);

if ( is_array( $exif_data ) ) {
    echo '<ul class="image-meta">';
    foreach ( $exif_data as $field => $value ) {
        echo '<li>' . $field . ': ' . $value . '</li>';
    }
    echo '</ul>';
}
    `

Data Migration

The plugin comes with two WP-CLI commands to migrate images in your existing content into the [img] shortcode format used by
this plugin. Note: if it isn’t clear, this is an early release — use at your own risk, and make sure you’ve backed up your posts before migrating!

wp image-shortcake migrate <ids> [--dry-run]

This command searches the post content of the posts specified in <ids>, and replaces any <img> tags or [caption] shortcodes with [img]
shortcodes. Currently it only catches images added through the media library; custom img tags will not be converted.

If you add the --dry-run flag, no replacements will actually be performed, just a summary report of the changes which would have been made.

wp image-shortcake revert <ids> [--dry-run]

This command finds all [img] shortcodes in the content of any of the posts specified in <ids>, and replaces them with the markup that would be generated by those shortcodes. Note that this runs any filters in your theme, so that if you have filtered the output of the shortcodes at any output, those filters will be reflected in the coverted post content.

Changelog

0.1.0 (May 1, 2015)

  • Initial release

Full changelog on WordPress.org →

Screenshots

This is the shortcode UI form as accessed from Insert Media > Insert Post Element. (Note that you can also insert images as usual, by inserting them in the Media Library - they will be transparently converted into shortcodes behind the scenes for you.)
This is the shortcode UI form as accessed from Insert Media > Insert Post Element. (Note…
Once inserted into a post, the image preview renders in the editor just as it normally would. The Shortcake plugin's edit/delete buttons are available to modify the shortcode through the provided UI.
Once inserted into a post, the image preview renders in the editor just as it normally…

For developers

Is this your plugin? Show off the numbers.

Add a live badge to your site, docs or GitHub README. It updates on its own — no account needed.

Active installs badge Rating badge Health score badge

Best Image Shortcake alternatives

All images plugins →
Alternatives
Rank Plugin Active installs Rating Updated Health
1 Autoptimize Autoptimize Autoptimize speeds up your website by optimizing JS, CSS, images (incl. lazy-load), HTML… by Optimizing Matters 800K+ ★★★★★★★★★★ 4.7 (1.4K) 1 day ago 97
2 WebP Express WebP Express Serve autogenerated WebP images instead of jpeg/png to browsers that supports WebP. by rosell.dk 300K+ ★★★★★★★★★★ 4.4 (161) 3 months ago 57
3 Responsive Lightbox & Gallery Responsive Lightbox & Gallery The most popular lightbox plugin and responsive gallery builder for WordPress. by dFactory 100K+ ★★★★★★★★★★ 4.9 (2K) 2 weeks ago 81
4 Modern Image Formats Modern Image Formats Converts images to more modern formats such as WebP or AVIF during upload. by WordPress Performance Team 100K+ ★★★★★★★★★★ 3.5 (25) 1 month ago 85
5 Lightbox & Modal Popup WordPress Plugin – FooBox Lightbox & Modal Popup WordPress Plugin – FooBox A responsive image lightbox for WordPress galleries, WordPress attachments & FooGallery by FooPlugins 100K+ ★★★★★★★★★★ 3.9 (95) 1 month ago 87
6 Media Cleaner: Clean your WordPress! Media Cleaner: Clean your WordPress! Clean your WordPress! Eliminate unused and broken media files. For a faster, and better… by Jordy Meow 90K+ ★★★★★★★★★★ 4.6 (775) 24 hours ago 88
7 Media Library Assistant Media Library Assistant Enhances the Media Library; powerful gallery and list shortcodes, full taxonomy support… by David Lingren 70K+ ★★★★★★★★★★ 4.8 (202) 14 hours ago 94
8 Image Placeholders Image Placeholders Displays placeholders based on an image's dominant color while the image is loading. by WordPress Performance Team 60K+ ★★★★★★★★★★ 3.5 (2) 1 month ago 73
9 Simple Image Sizes Simple Image Sizes This plugin lets you create custom image sizes for your site. Override your theme sizes… by Nicolas Juen 60K+ ★★★★★★★★★★ 4.6 (91) 1 month ago 74
10 Enhanced Responsive Images Enhanced Responsive Images Improvements for responsive images in WordPress. by WordPress Performance Team 50K+ ★★★★★★★★★★ No reviews 1 month ago 70

FAQ

Image Shortcake: quick answers

Straight answers, pulled from live WordPress.org data.

Live data from WordPress.org · checked Sep 27, 2026

Is Image Shortcake free?

Yes. Image Shortcake is free to download and use from the official WordPress.org plugin directory.

Is Image Shortcake safe to use in 2026?

Image Shortcake shows warning signs in 2026 — compare the alternatives below before installing. It runs on 10+ sites, is rated 5/5 and was last updated 11 years ago, and scores 30/100 on our health check.

How many websites use Image Shortcake?

Image Shortcake is active on 10+ WordPress websites and has been downloaded 3,119 times since it launched in May 2015. It was downloaded 47 times in the last 30 days.

Does Image Shortcake work with WordPress 7.1?

Image Shortcake is officially tested up to WordPress 4.3.34, while the latest release is 7.1.2. It may still work, but try it on a staging site first.

When was Image Shortcake last updated?

The latest version, 0.1.0, was released on August 27, 2015 (11 years ago).

Who makes Image Shortcake?

Image Shortcake is developed and maintained by Daniel Bachhuber.

What are the best alternatives to Image Shortcake?

The most popular alternatives to Image Shortcake are Autoptimize (800K+ installs), WebP Express (300K+ installs) and Responsive Lightbox & Galle… (100K+ installs).

Powered by PageForge

Want thousands of pages that rank like these? Build them in an afternoon.

This directory runs on the same engine as PageForge. Turn any spreadsheet, CSV or API into thousands of fast, SEO-ready WordPress pages — with schema, internal links and AI-written copy baked in.

  • CSV, Google Sheets & API data sources
  • AI content, schema & internal links per page
  • Works with Elementor, Gutenberg, Yoast & Rank Math
  • Free on WordPress.org — no credit card
Sarah is here to help!
Hi there! 👋 Need help finding what you're looking for?
Sarah
Sarah
Online & Ready to Help
Hi there! 👋 Need help finding what you're looking for?

We'll use this to continue our conversation

Just now ✓ Verified

Join 500+ SEO Pros Scaling Their Strategy

Get exclusive programmatic SEO tactics, AI content workflows, and the latest PageForge updates delivered straight to your inbox. Stay ahead of the algorithm.

We care about your data in our privacy policy.