Support

Account

Home Forums Front-end Issues Page Link Value Reply To: Page Link Value

  • Use the post object field instead!

    It’ll give you the entire post object (duh) instead of just a link.

    
    <?php $postobject = get_field('post_object'); ?>
    <a href="<?php echo get_permalink($postobject->ID); ?>"><?php echo $postobject->post_title; ?></a>