Plugin info

Total downloads: 19,906
Active installs: 7,000
Total reviews: 11
Average rating: 4.9
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 11/28/2017 (2955 days ago)
Added to WordPress: 12/17/2012 (13 years old)
Minimum WordPress version: 3.0
Tested up to WordPress version: 3.5.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 2955 days ago • 11 reviews

24/100

Is Multi Image Metabox abandoned?

Possibly abandoned (last update 2955 days ago).

Compatibility

Requires WordPress: 3.0
Tested up to: 3.5.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

This plugin add a metabox which allox to upload and link multiple images to one post.
Pictures are linked by the way of meta_value (and attachments ID). They can be reordered using drag and drop.

Number of allowed pictures and concerned post types can be overited using hooks.

Plugin includes many functions to retrieve linked pictures.
For more information on using the plugin, refer to the section “Other Notes”.

Set concerned post types

Paste this into your theme’s functions.php file :

Set allowed number of picts

Paste this into your theme’s functions.php file :
‘_image1’,
‘image2’ => ‘_image2’,
);
return $picts;
}
?>

Set allowed number of picts, depending to the post_type

Paste this into your theme’s functions.php file :
add_filter(‘list_images’,’my_list_images’,10,2);
function my_list_images($list_images, $cpt){
global $typenow;
if($typenow == “my_custom_post_type” || $cpt == “my_custom_post_type”)
$picts = array(
‘image1’ => ‘_image1’,
‘image2’ => ‘_image2’,
‘image3’ => ‘_image3’,
);
else
$picts = array(
‘image1’ => ‘_image1’,
‘image2’ => ‘_image2’,
‘image3’ => ‘_image3’,
‘image4’ => ‘_image4’,
‘image5’ => ‘_image5’,
‘image6’ => ‘_image6’,
‘image7’ => ‘_image7’,
‘image8’ => ‘_image8’,
);
return $picts;
}

get_images_ids()

This function have to be used into a template file, or any function.
It return an array of the linked attachments’s ID.

It take two arguments whose are :

  1. include the thumbnail ? (boolean) if true include the thumbnail in the returned datas
  2. ID (integer) for targeting images linked to a specific post

    45,
    ‘image1’ => 5,
    ‘image2’ => 6,
    ‘image3’ => 12,
    ‘image6’ => 20,
    ‘image7’ => 15
    );

    //Empty pictures ar not returned

    ?>

    get_images_src()

    This function have to be used into a template file, or any function.
    It return an array of URIs and dimension for the linked attachments’s, by order.

It take three agruments whose are :

  1. size (string) the size to return
  2. include the thumbnail ? (boolean) if true include the thumbnail in the returned datas
  3. ID (integer) for targeting images linked to a specific post

    array(
    [0] => ‘http://url_of_the_medium_pict.jpg’,
    [1] => 340,
    [2] => 200,
    [3] => false //I’ve no idea what is it…
    ),
    ‘image2’ => array(
    [0] => ‘http://url_of_the_medium_second_pict.jpg’,
    [1] => 340,
    [2] => 200,
    [3] => false //I’ve no idea what is it…
    )
    );

    ?>

    get_multi_images_src()

    Same as get_image_src(), but return two sizes for all the pictures.

It take for agruments whose are :

  1. size (string) the size to return
  2. size2 (string) another size to return
  3. include the thumbnail ? (boolean) if true include the thumbnail in the returned datas
  4. ID (integer) for targeting images linked to a specific post

    array(
    [0] => array(
    [0] => ‘http://url_of_the_medium_pict.jpg’,
    [1] => 340,
    [2] => 200,
    [3] => false //I’ve no idea what is it…
    ),
    [1] => array(
    [0] => ‘http://url_of_the_full_pict.jpg’,
    [1] => 1020,
    [2] => 600,
    [3] => false //I’ve no idea what is it…
    ),
    ),
    ‘image2’ => array(
    [0] => array(
    [0] => ‘http://url_of_the_medium_second_pict.jpg’,
    [1] => 340,
    [2] => 200,
    [3] => false //I’ve no idea what is it…
    ),
    [1] => array(
    [0] => ‘http://url_of_the_second_full_pict.jpg’,
    [1] => 1020,
    [2] => 600,
    [3] => false //I’ve no idea what is it…
    )
    )
    );
    //Empty pictures ar not returned

    ?>

Installation

  1. Upload the Multi Image Metabox plugin to your blog and Activate it.

  2. Customize (into the functions.php file of your theme):

    1. If you want to target other post type than PAGE, use the filter hook “images_cpt”
    2. If you want to change the number of image, use the filter hook “list_images”
  3. Retrieve the linked images in your theme using the functions :

    1. Use get_images_ids() into the loop to get an array of attachment’s ID
    2. Use get_images_src(‘size’) into the loop to get an array of attachment’s URI & dimensions for the quiered size
    3. Use get_multi_images_src(‘size1′,’size2’) into the loop to get an array of attachment’s URI & dimensions for 2 differents size
  4. Enjoy ^^ (report to developper section to view the returned datas)

Frequently Asked Questions

Installation Instructions

  1. Upload the Multi Image Metabox plugin to your blog and Activate it.

  2. Customize (into the functions.php file of your theme):

    1. If you want to target other post type than PAGE, use the filter hook “images_cpt”
    2. If you want to change the number of image, use the filter hook “list_images”
  3. Retrieve the linked images in your theme using the functions :

    1. Use get_images_ids() into the loop to get an array of attachment’s ID
    2. Use get_images_src(‘size’) into the loop to get an array of attachment’s URI & dimensions for the quiered size
    3. Use get_multi_images_src(‘size1′,’size2’) into the loop to get an array of attachment’s URI & dimensions for 2 differents size
  4. Enjoy ^^ (report to developper section to view the returned datas)

Review feed

No reviews available

Screenshots

  1. The metabox look like that !

    The metabox look like that !

Changelog

1.3.4

  • Solve a major bug on front end, when you want to customize number of pictures depending to the post type.
  • YOU NEED TO UPDATE YOUR FILTERS “list_images”, if you’re using it…

1.3.1

  • Solve a minor bug while saving menus

1.3

  • Add an integer argument id for all procedurals functions to target a specific post
  • Solve a bug into the get_multi_images_src() function

1.2

  • Add an boolean argument thumbnail for all procedurals functions to join image post thumbnail (ID, images) at the front of the returned arrays

1.1

  • Change the hook for initializing the plugin. By this way we can now assign different numbers of picts, depending to the post type.
  • Debug the default sizes of get_multi_image_src()

1.0

  • First version, with some hooks and functions