Support

Account

Home Forums Front-end Issues Help Please: Page Links with Page Title Reply To: Help Please: Page Links with Page Title

  • dear @elliot

    i tried to use the same code he did but i got nothing with my filed and i changed it to be post objects from page link this my code

       <?php
    
    $post_objects = get_field('related_products');
    //var_dump($post_objects);
    if( $post_objects ): ?>
        <?php foreach( $post_objects as $post_object): ?>
                <a href="<?php echo get_permalink($post_object->ID); ?>"><?php echo get_the_title($post_object->ID); ?></a>
        <?php endforeach; ?>
    <?php endif;
    	
    ?>

    so what should i do

    Regards