
Multi Image Upload
Multi Image Upload adds a meta box to upload multiple images for posts and pages. You can enable it for custom post types also.
Download:
http://wordpress.org/plugins/multi-image-upload/
Installation:
- Upload plugin to the `/wp-content/plugins/` directory
- Activate the plugin through the ‘Plugins’ menu in WordPress
- To retrieve linked images Use miu_get_images() into the loop to get an array of image URLs
- Optional
If you need to enable this meta box for your custom post type for example ‘book’. Just edit the multi-image-upload.php as shown below
Replace:
$this->post_types = array('post', 'page');
With:
$this->post_types = array('post', 'page', 'book');
Usage
$images = miu_get_images($post_id=null); //Sample output Array ( [0] => http://www.example.com/image-1.png [1] => http://www.example.com/image-2.png ) ?>