Support

Account

Home Forums General Issues Get Custom Field value from page? Reply To: Get Custom Field value from page?

  • Pages are just posts, so as long as you use get_field with a post id (assuming you are not in the loop) you should be fine.

    For instance:

    
    $field_value = get_field( 'my_awesome_field', $page_id );