Multi Image Upload adds a meta box to upload multiple images for posts and pages. You can enable it for custom post types also. http://wordpress.org/plugins/multi-image-upload/ 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: With:Download:
Installation:
$this->post_types = array('post', 'page'); $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 ) ?>
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/p
Related posts
WordPress
Add remove Wordpress dashboard widgets
Learn how to add or remove WordPress dashboard widgets using wp_dashboard_setup and wp_add_dashboard_widget(). This guide covers removing unnecessary widgets, creating custom dashboard widgets, customizing dashboards for different users, and best practices for a cleaner WordPress admin experience.
WordPress
Adding Custom Fields to WordPress User Profile Page
Learn how to add custom fields to the WordPress user profile and Add New User screens using WordPress action hooks. This guide shows how to create, display, sanitize, and save custom user fields such as company name with user metadata.
WordPress
How to reindex tables with MySQL
Learn how to remove AUTO_INCREMENT from the WordPress wp_posts ID column, manage primary keys, verify database changes, and safely modify your WordPress database structure.