Description
This plugin create the metabox with the media uploader into any post types. In the metabox, You can drag images into any order you like. The IDs and the order of images will put on record in the customfield of your posts as array.
Attention
Available only for WordPress 4.0+.
Installation
- Copy the โmy-upload-imagesโ folder into your plugins folder.
- Activate the plugin via the โPluginsโ admin page. The plugin requires the setup of selecting post_types which you want to add metabox.
Example usage
The image IDs are stored in [โmy_upload_imagesโ] custom field. When to output the IDs into your template file, write codes like below.
Output images and links.
ID, โmy_upload_imagesโ, true );
if ( $my_upload_images ): foreach( $my_upload_images as $img_id ):
$full_src = wp_get_attachment_image_src ($img_id,’fullsizeโ);
if ( !$full_src ) continue;
echo
โโ.wp_get_attachment_image ($img_id,’thumbnailโ).โโ.โ\nโ;
endforeach; endif;
?>
Output images and links with attributes.
ID, โmy_upload_imagesโ, true );
$slider = โ;
if ( $my_upload_images ):
foreach( $my_upload_images as $img_id ):
$full_src = wp_get_attachment_image_src ($img_id,’fullsizeโ);
if ( !$full_src ) continue;
$file = get_post( $img_id );
$img_title = $file->post_title; // title
$img_caption = $file->post_excerpt; // caption
$img_desc = $file->post_content; // desctiprion
$img_alt = get_post_meta( $img_id, โ_wp_attachment_image_altโ, true ); // alt
$thumb_src = wp_get_attachment_image_src ($img_id,’thumbnailโ);
$slider .=
โ\tโ.โ
โ\t\tโ.โโ.โ\nโ.
โ\t\t\tโ.โ.โ\nโ.
( $img_title ? โ\t\t\tโ.โ.$img_title.โ.โ\nโ : โ ).
( $img_desc ? โ\t\t\tโ.โ.wpautop( $img_caption ).โ.โ\nโ : โ ).
โ\t\tโ.โโ.โ\nโ.
โ\tโ.โ
โ.โ\nโ;
endforeach;
echo โ
- โ.โ\nโ.$slider.โ
โ.โ\nโ;
endif;
?>
Attention
The custom field doesnโt have multiple values, it just has become an array in a single value. When you call them with โget_post_metaโ function, do not set the third parameter to โfalseโ.
Reviews
Contributors & Developers
“My Upload Images” is open source software. The following people have contributed to this plugin.
Contributors“My Upload Images” has been translated into 1 locale. Thank you to the translators for their contributions.
Translate “My Upload Images” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.4.1
14.Mar.2017. Fixed behavior of custom wp.media.
1.4.0
25.Feb.2017. Add image metadata editor. Fix TypeError of wp.media.js.
1.3.9
29.Dec.2016. Fix a conflict of edit_form_after_title.
1.3.8
12.May.2016. Add limit max number of registerable images. Fix display on preview. Change Text Domain.
1.3.7
16.Nov.2015. Add edit buttons on images. Rename functions to avoid name conflict. Some bug fixes, accessibility improvements and translation updates.
1.3.6
18.Oct.2015. Bug fix.
1.3.5
11.Oct.2015. Bug fix.
1.3.4
12.Sep.2015. Add caption on thumbnail. Unite multiple option values into an array.
1.3.3
07.June.2015. Add selector of position of metabox.
1.3.2
10.May.2015. Auto generate post thumbnail by plugin.
1.3.1
15.Jan.2015. Fixed Javascript.
1.3
10.Jan.2015. First public version Release.
1.0
25.Apr.2014. Initial Release.