Viewing 3 replies - 1 through 3 (of 3 total)
  • Have you found a solution to your question? I’m looking for something similar.

    Here is a link to the developers forum that seems to request the same with a solution that I cant seem to implement

    I got mine sorted by using

    <php
    //Using this to get the post ID so that I can group the images with their own entry since I display multiple entries on one page
    $post_id = get_post_meta(get_the_ID(), 'equipment_images', false);
    $excagriqID = get_the_ID();
    
    $images = rwmb_meta( 'equipment_images','type=image');
     echo "<div class='equipment-images'>";
     foreach ( $images as $image )
      {
        echo "<div class='equipment-image'><a href='{$image['full_url']}' title='{$image['title']}' rel='". $excagriqID ."' class='thickbox'><img src='{$image['url']}' width='{$image['width']}' height='{$image['height']}' alt='{$image['alt']}' /></a></div>";
      }
    ?>

    With rwmb_meta('equipment_images','type=image');
    got the images in the order i gave in post edition.

    thanks…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to get plupload_image order?’ is closed to new replies.