• Hello,

    So I am not really sure where to start…. So I have created a wordpress theme and it uses custom meta boxes. It works really awesome but I have ONE issue that I am stuck on. Unfortunately I am not advanced enough to figure out a solution.

    I am looking for a really simple solution. What I assume is the easiest and my preferred option is I have the images (thumbs) displaying properly and in the right order. What I want to do is list just those images in that same order on a separate page, but in full size. The next best option is to use those images in a slider/gallery.

    The code I have for the images is

    <?php
    													$images = rwmb_meta( 'YOUR_PREFIX_plupload', 'type=image' );
    													foreach ( $images as $image )
    														{
    														    echo "<a href='{$image['full_url']}' title='{$image['title']}' rel='thickbox'><img src='{$image['url']}' alt='{$image['alt']}' ></a>";
    														}
    												; ?>

    Here is a link to an example of what I have https://gwenty.com/example/listings/6110-pinnacle-road-duncan/

    Thank you!
    Ryan

  • The topic ‘How to grab parent content?’ is closed to new replies.