Support

Account

Home Forums General Issues Page link fields Reply To: Page link fields

  • Hey, try this:

    $id = get_field('linkedto');
    if ($id) {
        echo '<a href="' . get_permalink($id) . '">';
            echo get_the_title($id);
        echo '</a>';
    }