Support

Account

Home Forums General Issues How to display fields from child pages on parent page Reply To: How to display fields from child pages on parent page

  • you have to use the post/page-ID there too. (else it search only at current page)
    probably this works:

    $description = get_field( 'description', $page->ID );
    echo $description;