Support

Account

Home Forums General Issues Post Object Issue with Woocommerce Product Archives Reply To: Post Object Issue with Woocommerce Product Archives

  • Hi @hplwebmaster

    Your code maybe resetting the global $post object, please make use of a custom foreach loop as shown in this example:

    $post_objects = get_field('post_objects');
    
    if( $post_objects ): ?>
        <ul>
        <?php foreach( $post_objects as $post_object): ?>
            <li>
                <a href="<?php echo get_permalink($post_object->ID); ?>"><?php echo get_the_title($post_object->ID); ?></a>
                <span>Post Object Custom Field: <?php the_field('field_name', $post_object->ID); ?></span>
            </li>
        <?php endforeach; ?>
        </ul>
    <?php endif;