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

  • what is ssm_featured_content? your repeaterfield?

    you’ll need to change it to:

    
    <?php while (has_sub_field('ssm_featured_content')) { ?>
    
    	<?php $postObject = get_sub_field('ssm_featured_page'); ?>
    	
    	<?php echo $postObject->$post_title; ?>
    	
    	
    <?php } ?>