Title: My Upload Images
Author: Mizuho Ogino
Published: <strong>January 12, 2015</strong>
Last modified: March 14, 2017

---

Search plugins

![](https://ps.w.org/my-upload-images/assets/banner-772x250.jpg?rev=1564002)

This plugin **hasn’t been tested with the latest 3 major releases of WordPress**.
It may no longer be maintained or supported and may have compatibility issues when
used with more recent versions of WordPress.

![](https://ps.w.org/my-upload-images/assets/icon-128x128.jpg?rev=1065526)

# My Upload Images

 By [Mizuho Ogino](https://profiles.wordpress.org/fishpie/)

[Download](https://downloads.wordpress.org/plugin/my-upload-images.1.4.1.zip)

 * [Details](https://test.wordpress.org/plugins/my-upload-images/#description)
 * [Reviews](https://test.wordpress.org/plugins/my-upload-images/#reviews)
 *  [Installation](https://test.wordpress.org/plugins/my-upload-images/#installation)
 * [Development](https://test.wordpress.org/plugins/my-upload-images/#developers)

 [Support](https://wordpress.org/support/plugin/my-upload-images/)

## 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+.

## Screenshots

 * [[
 * Select post types you’d like to display metabox.
 * [[
 * Just upload and sort images.

## Installation

 1. Copy the ‘my-upload-images’ folder into your plugins folder.
 2. 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’).’](https://test.wordpress.org/plugins/my-upload-images/'.$full_src[0].'?output_format=md)‘.”\
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”.’

  ‘.”\n”.
   “\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
  
  ![](https://secure.gravatar.com/avatar/9de7e528a5d9974aa83f1fc076d5912ed872a2da7f4732338634b76c4f2f8624?
  s=60&d=retro&r=g)
  
  ### 󠀁[simple light and usefull plugin](https://wordpress.org/support/topic/simple-light-and-usefull-plugin/)󠁿
  
   [mazbowo](https://profiles.wordpress.org/mazbowo/) September 3, 2016
  simple, light and usefull plugin
  ![](https://secure.gravatar.com/avatar/32e02cb04e7e78813f6ee5d46157f3a3d9f2f6d64a982d4cef9aa43c4fb8974b?
  s=60&d=retro&r=g)
  
  ### 󠀁[For Plugin](https://wordpress.org/support/topic/for-plugin/)󠁿
  
   [Vala bhavesh v](https://profiles.wordpress.org/vala-bhavesh/) September 3, 2016
  Nice this is supers
   [ Read all 3 reviews ](https://wordpress.org/support/plugin/my-upload-images/reviews/)
  
  ## Contributors & Developers
  
  “My Upload Images” is open source software. The following people have contributed
  to this plugin.
  Contributors
   *   [ Mizuho Ogino ](https://profiles.wordpress.org/fishpie/)
  “My Upload Images” has been translated into 1 locale. Thank you to [the translators](https://translate.wordpress.org/projects/wp-plugins/my-upload-images/contributors)
  for their contributions.
  [Translate “My Upload Images” into your language.](https://translate.wordpress.org/projects/wp-plugins/my-upload-images)
  
  ### Interested in development?
  
  [Browse the code](https://plugins.trac.wordpress.org/browser/my-upload-images/),
  check out the [SVN repository](https://plugins.svn.wordpress.org/my-upload-images/),
  or subscribe to the [development log](https://plugins.trac.wordpress.org/log/my-upload-images/)
  by [RSS](https://plugins.trac.wordpress.org/log/my-upload-images/?limit=100&mode=stop_on_copy&format=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.
  
  ## Meta
  
   *  Version **1.4.1**
   *  Last updated **9 years ago**
   *  Active installations **400+**
   *  WordPress version ** 4.0 or higher **
   *  Tested up to **4.7.33**
   *  Languages
   * [English (US)](https://wordpress.org/plugins/my-upload-images/) and [Japanese](https://ja.wordpress.org/plugins/my-upload-images/).
   *  [Translate into your language](https://translate.wordpress.org/projects/wp-plugins/my-upload-images)
   * Tags
   * [cms](https://test.wordpress.org/plugins/tags/cms/)[custom field](https://test.wordpress.org/plugins/tags/custom-field/)
     [image](https://test.wordpress.org/plugins/tags/image/)[media uploader](https://test.wordpress.org/plugins/tags/media-uploader/)
     [upload](https://test.wordpress.org/plugins/tags/upload/)
   *  [Advanced View](https://test.wordpress.org/plugins/my-upload-images/advanced/)
  
  ## Ratings
  
   5 out of 5 stars.
   *  [  2 5-star reviews     ](https://wordpress.org/support/plugin/my-upload-images/reviews/?filter=5)
   *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/my-upload-images/reviews/?filter=4)
   *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/my-upload-images/reviews/?filter=3)
   *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/my-upload-images/reviews/?filter=2)
   *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/my-upload-images/reviews/?filter=1)
  [Your review](https://wordpress.org/support/plugin/my-upload-images/reviews/#new-post)
  [See all reviews](https://wordpress.org/support/plugin/my-upload-images/reviews/)
  
  ## Contributors
  
   *   [ Mizuho Ogino ](https://profiles.wordpress.org/fishpie/)
  
  ## Support
  
  Got something to say? Need help?
   [View support forum](https://wordpress.org/support/plugin/my-upload-images/)
  
  ## Donate
  
  Would you like to support the advancement of this plugin?
   [ Donate to this plugin ](http://web.contempo.jp/donate?mui)