Support

Account

Home Forums Front-end Issues Extracting Post Object data from within a Repeater Reply To: Extracting Post Object data from within a Repeater

  • Hi Jonathon
    I know I am very late on this.. But I have used your code in my repeater to get the post object repeated ..

    I was trying like this

    ` <?php $postobject = get_sub_field(‘post_repeater’);?>
    <div class=”col-sm-3 product-item”>

    <a href=”<?php $postURL = get_permalink($postobject->ID); ?>”>

    <img class=”product-img” src=”<?php //bloginfo(‘template_directory’);?>/images/product-images/321600_moelleux_blanc_trepais.png” width=”100%” />

    <p class=”product-name”><?php $postobject->post_title; ?></p>
    <p class=”product-seemore”>See More</p>
    </a>

    </div><!– col ends here –>`

    But My repeater just repeat row and doesn’t produce Post object..

    I am using this repeater in a page template and repeating it in a Page

    Here is My ACF field settings