=== Image Shortcake ===
Contributors: fusionengineering, goldenapples, danielbachhuber
Tags: shortcodes, images
Requires at least: 3.0.1
Tested up to: 4.3
Stable tag: 0.1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Image Shortcake adds a shortcode for images, so that themes can template and filter images displayed in posts. Although it can be used standalone, it is designed to work with the UI provided by the [Shortcake (Shortcode UI)](https://github.com/fusioneng/Shortcake) plugin.
== Description ==
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 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)](https://github.com/fusioneng/Shortcake) plugin. Shortcake offers an easy to use interface to manage shortcodes in post content.
What could you use this for? Well, at [Fusion](http://fusion.net) 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](#Installation) section for more ideas and tips for custom image templates. [Get involved with the project](https://github.com/fusioneng/image-shortcake) 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`:
```
"$class $align attachment-$size",
'alt' => $alt,
)
);
if ( is_array( $exif_data ) ) {
echo '