Give your readers an easier way to embed your infographics (or other images) on their sites, with proper attribution back to you.
With a single URL in an 'Edit Post' page (and no setup), you can automatically add a properly attributed, easy-to-copy embed code to the bottom of your posts. Readers can also edit the width of the image in the embed code to either percent or pixels (the default is 100%).
While it was built with infographics in mind, you can certainly use any image you'd like.
Want to improve the plugin or add a feature? Fork it on GitHub and let's work on it!
- Upload the
wp-embed-infographic
folder to the/wp-content/plugins/
directory. - Activate the plugin through the 'Plugins' menu in WordPress.
- Insert the URL of the image you're using in the 'Infographic Embedder' meta box.
- Publish or update your post.
function infographics_on_my_post_types() {
return array (
'post',
'page',
'other-post-type'
);
}
add_filter ( 'infographic_embedder_post_types', 'infographics_on_my_post_types' );
function infographics_custom_embed_code() {
return '<img src###"' . get_post_meta( get_the_ID(), 'infographic_embedder_post_class', true ) . '" alt###"' . get_the_title() . ' - An Infographic from the Awesome ' . get_bloginfo('name') . '" width###"100%" class###"infographic_embedder" /><p class###"infographic_attr">How awesome is <a href###"' . get_permalink() . '" target###"_blank">' . get_bloginfo('name') . '?!</a></p>';
}
add_filter ( 'infographic_embedder_image_code', 'infographics_custom_embed_code' );
function infographics_custom_image_code() {
return '<p><a href###"' . get_post_meta( get_the_ID(), 'infographic_embedder_post_class', true ) . '" target###"_blank">Download</a> our infographic today!</p>';
}
add_filter ( 'infographic_embedder_download_html', 'infographics_custom_image_code' );
function infographics_custom_labeling() {
return '<h3>Embed</h3><label for###"embed_width">Image Width</label>';
}
add_filter ( 'infographic_embedder_embed_html', 'infographics_custom_labeling' );
- On any post where the Infographic Embed URL is present
- Meta box on post pages
Fixes a bug with sites changing wpautop
- Add filters
- Remove default styling
- Improve UI for changing image size
- Bug fixes for themes that don't include jQuery by default
- General code refactoring
Initial release.
This updates fixes a bug for sites changing wpautop() around. 1.1 is a complete refactoring: default styling is removed, changing the image size is improved, and filters were added. Bugs for themes without jQuery were also fixed.
This update is a complete refactoring: default styling is removed, changing the image size is improved, and filters were added. Bugs for themes without jQuery were also fixed.